|
SYNOPSISvoid bson_copy_to_excluding_noinit (const bson_t *src, PARAMETERS
DESCRIPTIONThe bson_copy_to_excluding_noinit() function shall copy all fields from src to dst except those specified by the variadic, NULL terminated list of keys starting from first_exclude. Works the same way as bson_copy_to_excluding(), except does not call bson_init() on dst. This function should be preferred in new code over bson_copy_to_excluding(). WARNING: This is generally not needed except in very special
situations.
EXAMPLE#include <bson/bson.h>
int main ()
{
AUTHORMongoDB, Inc COPYRIGHT2009-present, MongoDB, Inc.
|