1BSON_APPEND_BOOL(3) libbson BSON_APPEND_BOOL(3)
2
3
4
6 bson_append_bool - bson_append_bool()
7
9 #define BSON_APPEND_BOOL(b, key, val) \
10 bson_append_bool (b, key, (int) strlen (key), val)
11
12 bool
13 bson_append_bool (bson_t *bson, const char *key, int key_length, bool value);
14
16 · bson: A bson_t.
17
18 · key: The name of the field.
19
20 · key_length: The length of key or -1 to use strlen().
21
22 · value: true or false.
23
25 The bson_append_bool() function shall append a new element to bson con‐
26 taining the boolean provided.
27
29 Returns true if the operation was applied successfully. The function
30 will fail if appending the value grows bson larger than INT32_MAX.
31
33 MongoDB, Inc
34
36 2017-present, MongoDB, Inc
37
38
39
40
411.16.2 Feb 25, 2020 BSON_APPEND_BOOL(3)