Removes all the document that match selector.

See remove.

Property definitions

mongodb $ MongoCollection :: remove_all
	# Removes all the document that match `selector`.
	#
	# See `remove`.
	fun remove_all(selector: JsonObject): Bool do
		return native.remove_all(selector.to_bson.native)
	end
lib/mongodb/mongodb.nit:504,2--509,4