1BSON_APPEND_OID(3)                  libbson                 BSON_APPEND_OID(3)
2
3
4

SYNOPSIS

6          #define BSON_APPEND_OID(b, key, val) \
7             bson_append_oid (b, key, (int) strlen (key), val)
8
9          bool
10          bson_append_oid (bson_t *bson,
11                           const char *key,
12                           int key_length,
13                           const bson_oid_t *oid);
14

PARAMETERS

16bson: A bson_t.
17
18key: An ASCII C string containing the name of the field.
19
20key_length: The length of key in bytes, or -1 to determine the length
21         with strlen().
22
23oid: A bson_oid_t.
24

DESCRIPTION

26       The bson_append_oid() function shall append a new element  to  bson  of
27       type BSON_TYPE_OID. oid MUST be a pointer to a bson_oid_t.
28

RETURNS

30       Returns  true  if  the operation was applied successfully. The function
31       will fail if appending oid grows bson larger than INT32_MAX.
32

AUTHOR

34       MongoDB, Inc
35
37       2017-present, MongoDB, Inc
38
39
40
41
421.25.1                           Nov 08, 2023               BSON_APPEND_OID(3)
Impressum