gte

@JvmName(name = "gteExt")
infix fun <T> KProperty<T>.gte(value: T): Bson

Creates a filter that matches all documents where the value of the given property is greater than or equal to the specified value.

Return

the filter

Parameters

value

the value

the value type

fun <T> gte(property: KProperty<T>, value: T): Bson

Creates a filter that matches all documents where the value of the given property is greater than or equal to the specified value.

Return

the filter

Parameters

property

the data class property

value

the value

the value type