Inserts multiple documents in the collection.

See insert.

Property definitions

mongodb $ MongoCollection :: insert_all
	# Inserts multiple documents in the collection.
	#
	# See `insert`.
	fun insert_all(docs: Collection[JsonObject]): Bool do
		var res = true
		for doc in docs do res = insert(doc) and res
		return res
	end
lib/mongodb/mongodb.nit:441,2--448,4