Function MongoCursor.limit

Limits the maximum documents that cursor returns.

This method must be called before beginnig iteration in order to have effect. If multiple calls to limit() are made, the one with the lowest limit will be chosen.

Prototype

MongoCursor limit(
  ulong count
);

Parameters

NameDescription
count The maximum number number of documents to return. A value of zero means unlimited.

Returns

the same cursor

See Also

http://docs.mongodb.org/manual/reference/method/cursor.limit

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.