# Functions
Filter returns a map satisfying c != zero within all c in the map.
FilterFunc returns a map satisfying f(c) within all c in the map.
Set implements a non-thread safe Set.
SliceFunc returns a slice mapped by f(k,v) within all (k,v) in the map.
Split slices s into all submaps separated by sep and returns a slice of the submaps between those separators.
SplitN slices s into submaps and returns a slice of the submaps.
TypeAssertFilter returns a map satisfying r, ok := any(c).(R); ok == true within all r in the map.
TypeAssertFilterFunc returns a map satisfying f(c) within all c in the map.
# Type aliases
A NestedMap is a map which, when it cannot find an element in itself, defers to another map.