# Packages
Package pagination provides a ways to iterate over collections.
# Functions
All returns true if all items of the slice are true.
AllNotEmpty returns whether all elements of the slice are not empty.
Any returns true if there is at least one element of the slice which is true.
AnyEmpty returns whether there is one entry in the slice which is empty.
Find looks for an element in a slice.
FindInSlice finds if any values val are present in the slice and if so returns the first index.
GenericRemove looks for elements in a slice using the equal function.
ParseCommaSeparatedList returns the list of string separated by a comma.
ParseCommaSeparatedListToMap returns a map of key value pairs from a string containing a comma separated list.
ParseListWithCleanup splits a string into a list like strings.Split but also removes any whitespace surrounding the different items for example, ParseListWithCleanup("a, b , c", ",") returns []{"a","b","c"}.
ParseListWithCleanupKeepBlankLines splits a string into a list like strings.Split but also removes any whitespace surrounding the different items unless the entire item is whitespace in which case it is converted to an empty string.
Remove looks for elements in a slice.