1BSON_COPY_TO_EXCLUDING_NOINIT_VA(3) LibbsonBSON_COPY_TO_EXCLUDING_NOINIT_VA(3)
2
3
4
6 bson_copy_to_excluding_noinit_va - bson_copy_to_excluding_noinit_va()
7
9 void
10 bson_copy_to_excluding_noinit_va (const bson_t *src,
11 bson_t *dst,
12 const char *first_exclude,
13 va_list args);
14
16 · src: A bson_t.
17
18 · dst: A bson_t.
19
20 · first_exclude: The first field name to exclude.
21
22 · args: A va_list.
23
25 The bson_copy_to_excluding_noinit_va() function shall copy all fields
26 from src to dst except those specified by first_exclude and args.
27
28 This method works the same way as bson_copy_to_excluding_noinit, except
29 it takes a va_list. This method does not call bson_init on dst.
30
32 bson_copy_to_excluding_noinit
33
35 MongoDB, Inc
36
38 2017-present, MongoDB, Inc
39
40
41
42
431.15.2 Nov 06, 201B9SON_COPY_TO_EXCLUDING_NOINIT_VA(3)