mongodb :: MongoCollection :: update_all
selector
.See update
.
# Updates all documents matching the `selector`.
#
# See `update`.
fun update_all(selector: JsonObject, update: JsonObject): Bool do
return native.update_all(
selector.to_bson.native,
update.to_bson.native)
end
lib/mongodb/mongodb.nit:533,2--540,4