1BSON_ITER_INT32(3) libbson BSON_ITER_INT32(3)
2
3
4
6 bson_iter_int32 - bson_iter_int32()
7
9 #define BSON_ITER_HOLDS_INT32(iter) (bson_iter_type ((iter)) == BSON_TYPE_INT32)
10
11 int32_t
12 bson_iter_int32 (const bson_iter_t *iter);
13
15 • iter: A bson_iter_t.
16
18 Fetches the value from a BSON_TYPE_INT32 element. You should verify
19 that the field is a BSON_TYPE_INT32 field before calling this function.
20
22 A 32-bit integer.
23
25 MongoDB, Inc
26
28 2017-present, MongoDB, Inc
29
30
31
32
331.21.1 Mar 02, 2022 BSON_ITER_INT32(3)