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_compare() function shall compare two bson documents for equality.

       This can be useful in conjunction with _qsort()_.

       If equal, 0 is returned.

       TIP:
          This function uses _memcmp()_ internally, so the semantics are the same.

Parameters

bson: A bson_t.

       • other: A bson_t.

Returns

       less than zero, zero, or greater than zero in qsort() style.

Synopsis

          int
          bson_compare (const bson_t *bson, const bson_t *other);

See Also