Paginated Iterable
class PaginatedIterable<T>( pageSize: Int, countGetter: () -> Long, paginationResultGetter: Pagination.() -> PaginationResult<T>) : Iterable<T>
Content copied to clipboard
Constructors
Link copied to clipboard
fun <T> PaginatedIterable( pageSize: Int, countGetter: () -> Long, paginationResultGetter: Pagination.() -> PaginationResult<T>)
Content copied to clipboard