vibe.d beta banner
get vibe.d
0.10.0

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

Function MongoCursor.skip

Skips a given number of elements at the beginning of the cursor.

MongoCursor skip (
  long count
);

This method must be called before beginning iteration in order to have effect. If multiple calls to skip() are made, the one with the maximum number will be chosen.

Parameters

NameDescription
count The number of documents to skip.

Returns

the same cursor

See Also

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

Authors

Sönke Ludwig

Copyright

© 2012-2014 Sönke Ludwig

License

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