Generates a new bson_oid_t.

Property definitions

mongodb $ BSONObjectId :: new
	# Generates a new `bson_oid_t`.
	new `{
		bson_oid_t *self = malloc(sizeof(bson_oid_t));
		bson_oid_init(self, NULL);
		return self;
	`}
lib/mongodb/native_mongodb.nit:118,2--123,3