SYNOPSIS

#include <bson.h>

bool
bson_iter_visit_all (bson_iter_t          *iter,
                     const bson_visitor_t *visitor,
                     void                 *data);

DESCRIPTION

The bson_iter_visit_all() function shall visit all elements of a bson document starting from the current position of iter.

See bson_visitor_t for the vtable of the visitor.

RETURN VALUE

TRUE if the visitor was pre-maturely ended. Otherwise FALSE.

ERRORS

No errors are defined.

SEE ALSO

AUTHORS

This page was written by MongoDB, Inc.