logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Author

       MongoDB, Inc

Description

       The  bson_iter_find()  function shall advance iter to the first element named key or exhaust all elements
       of iter. If iter is exhausted, false is returned and iter should be considered invalid.

       key is case-sensitive. For a case-folded version, see bson_iter_find_case().

Parameters

iter: A bson_iter_t.

       • key: A string containing the requested key.

Returns

       true is returned if the requested key was found. If not, iter was exhausted and should now be  considered
       invalid.

Synopsis

          bool
          bson_iter_find (bson_iter_t *iter, const char *key);

See Also