kmongo / org.litote.kmongo / bitwiseOr

bitwiseOr

@JvmName("ulongbitwiseOr") fun bitwiseOr(property: KProperty<<ERROR CLASS>>, value: Int): Bson (source)
fun <T : Number?> bitwiseOr(property: KProperty<T>, value: Int): Bson (source)

Creates an update that performs a bitwise or between the given integer value and the integral value of the property.

Parameters

property - the property

value - the value

Return
the update

Mongodb
.driver.manual reference/operator/update/bit/ $bit

@JvmName("ulongbitwiseOr") fun bitwiseOr(property: KProperty<<ERROR CLASS>>, value: Long): Bson (source)
fun <T : Number?> bitwiseOr(property: KProperty<T>, value: Long): Bson (source)

Creates an update that performs a bitwise or between the given long value and the integral value of the property.

Parameters

property - the property

value - the value

Return
the update

Mongodb
.driver.manual reference/operator/update/bit/ $bit