gitlab.com/evatix-go/core@v1.3.55/coreinterface/SlicePager.go (about)

     1  package coreinterface
     2  
     3  // SlicePager Paging count related methods
     4  type SlicePager interface {
     5  	GetPagesCount(perPageItems int) int
     6  	// HasPageAt returns true if page count is less than the page count
     7  	HasPageAt(perPageItems int, pageIndex int) bool
     8  }