class Marten::DB::Query::Page(M)
- Marten::DB::Query::Page(M)
- Reference
- Object
Overview
A page resulting from a pagination operation.
Included Modules
- Enumerable(M)
- Marten::Template::Object
Defined in:
marten/db/query/page.crmarten/template/ext/marten/db/query/page.cr
Constructors
Instance Method Summary
-
#count
Returns the number of records in the page.
- #each(*args, **options)
- #each(*args, **options, &)
-
#next_page?
Returns
true
if there is a next page. -
#next_page_number
Returns the next page number, or
nil
if there is no next page. -
#number
Returns the page number.
-
#pages_count
Returns the total number of pages.
-
#previous_page?
Returns
true
if there is a previous page. -
#previous_page_number
Returns the previous page number, or
nil
if there is no previous page.