Struct MongoCursor

Represents a cursor for a MongoDB query.

Use foreach( doc; cursor ) to iterate over the list of documents.

This struct uses reference counting to destroy the underlying MongoDB cursor.

Properties

Name Type Description
empty bool Returns true if there are more documents for this cursor.
front Bson Returns the current document of the response.

Methods

Name Description
opApply Iterates over all remaining documents.
opAssign
popFront Advances the cursor to the next document of the response.

Authors

Sönke Ludwig

Copyright

© 2012 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.