Function MongoCollection.find
Queries the collection for existing documents.
MongoCursor!R find(R, T, U)
(
T query,
U returnFieldSelector,
QueryFlags flags = QueryFlags .None,
int num_skip = 0,
int num_docs_per_chunk = 0
);
MongoCursor!R find(R, T)
(
T query
);
MongoCursor!R find(R)();
If no arguments are passed to find(), all documents of the collection will be returned.