MongoCursor.skip

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

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.

struct MongoCursor(DocType = Bson)
skip
(
long count
)

Parameters

count long

The number of documents to skip.

Return Value

the same cursor

See Also

Meta