Wrapper for mongoc_client_new().

Creates a new mongoc_client_t using the uri string provided.

Property definitions

mongodb $ NativeMongoClient :: new
	# Wrapper for `mongoc_client_new()`.
	#
	# Creates a new `mongoc_client_t` using the `uri` string provided.
	new(uri: CString) `{
		mongoc_init();
		return mongoc_client_new(uri);
	`}
lib/mongodb/native_mongodb.nit:167,2--173,3