package
1.5.1
Repository: https://github.com/leapkit/core.git
Documentation: pkg.go.dev

# Functions

Between will iterate up to, but not including `b` Between(0,10) // 0,1,2,3,4,5,6,7,8,9.
GroupBy creates an iterator of groups or sub-slices of the underlying Array or Slice entered where each group is of length Len(underlying) / size.
New returns a map of the helpers within this package.
Range creates an Iterator that will iterate numbers from a to b, including b.
Until will iterate up to, but not including `a` Until(3) // 0,1,2.

# Constants

Keys to be used in templates for the functions in this package.
Keys to be used in templates for the functions in this package.
Keys to be used in templates for the functions in this package.
Keys to be used in templates for the functions in this package.

# Interfaces

Iterator type can be implemented and used by the `for` command to build loops in templates.