bool bson_iter_init_find (bson_iter_t *iter, const bson_t *bson, const char *key);
iter: A bson_iter_t.
iter
bson: A bson_t.
bson
key: A key to locate after initializing the iter.
key
This function is identical to (bson_iter_init() && bson_iter_find()).
(bson_iter_init() && bson_iter_find())
See also