1BSON_APPEND_SYMBOL(3) Libbson BSON_APPEND_SYMBOL(3)
2
3
4
6 bson_append_symbol - bson_append_symbol()
7
9 #define BSON_APPEND_SYMBOL(b, key, val) \
10 bson_append_symbol (b, key, (int) strlen (key), val, (int) strlen (val))
11
12 bool
13 bson_append_symbol (bson_t *bson,
14 const char *key,
15 int key_length,
16 const char *value,
17 int length);
18
20 · bson: A bson_t.
21
22 · key: An ASCII C string containing the name of the field.
23
24 · key_length: The length of key in bytes, or -1 to determine the length
25 with strlen().
26
27 · value: The symbol.
28
29 · length: A length of symbol in bytes, or -1 to determine the length
30 with strlen().
31
33 Appends a new field to bson of type BSON_TYPE_SYMBOL. This BSON type is
34 deprecated and should not be used in new code.
35
37 Returns true if the operation was applied successfully. The function
38 will fail if appending the value grows bson larger than INT32_MAX.
39
41 MongoDB, Inc
42
44 2017-present, MongoDB, Inc
45
46
47
48
491.15.2 Nov 06, 2019 BSON_APPEND_SYMBOL(3)