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

#define BSON_ITER_HOLDS_DOUBLE(iter) \

Author

       MongoDB, Inc

Description

       Fetches the contents of a BSON_TYPE_DOUBLE field.

Parameters

iter: A bson_iter_t.

Returns

       A double.

Synopsis

          #define BSON_ITER_HOLDS_DOUBLE(iter) \
             (bson_iter_type ((iter)) == BSON_TYPE_DOUBLE)

          double
          bson_iter_double (const bson_iter_t *iter);

See Also