@@ -31,7 +31,7 @@ typealias JavaBsonNull =
3131/* *
3232 * Return the java version of this bson element.
3333 */
34- val BsonBoolean .java: JavaBsonBoolean
34+ inline val BsonBoolean .java: JavaBsonBoolean
3535 get() = when (this ) {
3636 is BsonBoolean .True -> JavaBsonBoolean .TRUE
3737 is BsonBoolean .False -> JavaBsonBoolean .FALSE
@@ -40,35 +40,35 @@ val BsonBoolean.java: JavaBsonBoolean
4040/* *
4141 * Return the kotlin version of this bson element.
4242 */
43- val JavaBsonBoolean .kt: BsonBoolean
43+ inline val JavaBsonBoolean .kt: BsonBoolean
4444 get() = BsonBoolean (value)
4545
4646/* *
4747 * Return the java version of this bson element.
4848 */
4949@Suppress(" UnusedReceiverParameter" )
50- val BsonUndefined .java: JavaBsonUndefined
50+ inline val BsonUndefined .java: JavaBsonUndefined
5151 get() = JavaBsonUndefined ()
5252
5353/* *
5454 * Return the kotlin version of this bson element.
5555 */
5656@Suppress(" UnusedReceiverParameter" )
57- val JavaBsonUndefined .kt: BsonUndefined
57+ inline val JavaBsonUndefined .kt: BsonUndefined
5858 get() = BsonUndefined
5959
6060/* *
6161 * Return the java version of this bson element.
6262 */
6363@Suppress(" UnusedReceiverParameter" )
64- val BsonNull .java: JavaBsonNull
64+ inline val BsonNull .java: JavaBsonNull
6565 get() = JavaBsonNull .VALUE
6666
6767/* *
6868 * Return the kotlin version of this bson element.
6969 */
7070@Suppress(" UnusedReceiverParameter" )
71- val JavaBsonNull .kt: BsonNull
71+ inline val JavaBsonNull .kt: BsonNull
7272 get() = BsonNull
7373
7474/* ============= ------------------ ============= */
0 commit comments