1BSON_ITER_KEY_LEN(3) Libbson BSON_ITER_KEY_LEN(3)
2
3
4
6 bson_iter_key_len - bson_iter_key_len()
7
9 uint32_t
10 bson_iter_key_len (const bson_iter_t *iter);
11
13 ยท iter: A bson_iter_t.
14
16 Fetches the length of the key for the current element observed by iter.
17 This is a constant time computation, and therefore faster than calling
18 strlen() on a key returned by bson_iter_key().
19
21 bson_iter_key() to retrieve current key.
22
24 An integer representing the key length.
25
27 MongoDB, Inc
28
30 2017-present, MongoDB, Inc
31
32
33
34
351.13.1 Jan 24, 2019 BSON_ITER_KEY_LEN(3)