pullAll

@JvmName(name = "pullAllExt")
infix fun <T> KProperty<Iterable<T>?>.pullAll(values: List<T?>?): Bson

Creates an update that removes all instances of the given values from the array value of the property.

Return

the update @mongodb.driver.manual reference/operator/update/pull/ $pull

Parameters

values

the values

the value type

fun <T> pullAll(property: KProperty<Iterable<T>?>, values: List<T?>?): Bson

Creates an update that removes all instances of the given values from the array value of the property.

Return

the update @mongodb.driver.manual reference/operator/update/pull/ $pull

Parameters

property

the property

values

the values

the value type