1BSON_ITER_DECIMAL128(3) libbson BSON_ITER_DECIMAL128(3)
2
3
4
6 #define BSON_ITER_HOLDS_DECIMAL128(iter) \
7 (bson_iter_type ((iter)) == BSON_TYPE_DECIMAL128)
8
9 bool
10 bson_iter_decimal128 (const bson_iter_t *iter, /* IN */
11 bson_decimal128_t *dec); /* OUT */
12
14 • iter: A bson_iter_t.
15
16 • dec: A location for a bson_decimal128_t.
17
19 Fetches the value from a BSON_TYPE_DECIMAL128 field. You should verify
20 that this is a BSON_TYPE_DECIMAL128 field before calling this function.
21
23 true if type was BSON_TYPE_DECIMAL128, otherwise false.
24
26 MongoDB, Inc
27
29 2017-present, MongoDB, Inc
30
31
32
33
341.25.1 Nov 08, 2023 BSON_ITER_DECIMAL128(3)