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 An integer representing the key length.
22
23 SEE ALSO:
24 bson_iter_key() to retrieve current key.
25
26
28 MongoDB, Inc
29
31 2017-present, MongoDB, Inc
32
33
34
35
361.23.1 Oct 20, 2022 BSON_ITER_KEY_LEN(3)