Versions in this module Expand all Collapse all v0 v0.19.4 May 24, 2023 Changes in this version + type Page struct + func (p *Page) IsCurrent() bool + func (p *Page) Num() int + type Paginator struct + func New(total, pagingNum, current, numPages int) *Paginator + func (p *Paginator) Current() int + func (p *Paginator) HasNext() bool + func (p *Paginator) HasPrevious() bool + func (p *Paginator) IsFirst() bool + func (p *Paginator) IsLast() bool + func (p *Paginator) Next() int + func (p *Paginator) Pages() []*Page + func (p *Paginator) PagingNum() int + func (p *Paginator) Previous() int + func (p *Paginator) Total() int + func (p *Paginator) TotalPages() int