vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

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!(T,R,typeof(null)) find(R, T) (
  T query
);

MongoCursor!(Bson,R,typeof(null)) find(R)();

If no arguments are passed to find(), all documents of the collection will be returned.

See Also

http://www.mongodb.org/display/DOCS/Querying

Authors

Sönke Ludwig

Copyright

© 2012-2016 RejectedSoftware e.K.

License

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