MongoCursor.limit

Limits the number of documents that the cursor returns.

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

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

Parameters

count long

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

Return Value

the same cursor

See Also

Meta