MongoDB C++ Driver
mongocxx-3.0.2
|
Class representing an input iterator of documents in a MongoDB cursor result set. More...
#include <cursor.hpp>
Public Member Functions | |
const bsoncxx::document::view & | operator* () const |
Dereferences the view for the document currently being pointed to. | |
const bsoncxx::document::view * | operator-> () const |
Accesses a member of the dereferenced document currently being pointed to. | |
iterator & | operator++ () |
Postfix increments the iterator to move to the next document. More... | |
void | operator++ (int) |
Prefix increments the iterator to move to the next document. More... | |
Friends | |
bool | operator== (const iterator &, const iterator &) |
Compare two iterators for (in)-equality. | |
bool | operator!= (const iterator &, const iterator &) |
Compare two iterators for (in)-equality. | |
Class representing an input iterator of documents in a MongoDB cursor result set.
iterator& mongocxx::cursor::iterator::operator++ | ( | ) |
Postfix increments the iterator to move to the next document.
mongocxx::query_exception | if the query failed |
void mongocxx::cursor::iterator::operator++ | ( | int | ) |
Prefix increments the iterator to move to the next document.
mongocxx::query_exception | if the query failed |