# Functions
BatchListIntoGroupsOf will group the provided slice into groups of size n, with the last of being truncated to the remaining count of elements.
Keys returns the keys for the given map, sorted.
KeyValueStringSlice returns a string slice with key=value items, sorted alphabetically.
KeyValueStringSliceAsMap converts a string slice with key=value items into a map of slice values.
KeyValueStringSliceWithFormat returns a string slice using the specified format, sorted alphabetically.
ListContainsElement returns true if the given list contains the given element.
MakeCopyOfList will return a new list that is a copy of the given list.
MapJoin converts the map to a string type by concatenating the key with the value using the given `mapSep` string, and `sliceSep` string between the slice values.
MapToSlice converts the map to a string slice by concatenating the key with the value using the given `sep` string.
MergeMaps merges all the maps into one.
RemoveElementFromList returns a copy of the given list with all instances of the given element removed.
# Constants
No description provided by the author