package
1.46.0
Repository: https://github.com/bww/go-util.git
Documentation: pkg.go.dev

# Functions

Apply a function to every element in a slice, returning the parameter slice, whose elements may be mutated.
Find searches for an element in a slice, sequentially.
FlatMap converts every element in an input slice to a countepart output slice by applying the specified function, then flatten the output slices into a single array of elements.
Flatten creates a new output slice that contains the elements from the specified input slices.
Map converts every element in an input slice to a countepart output element by applying the specified function.
MapAny converts every element in an input slice to a countepart output element containing the same input but cast to any/interface{}.
FindValue matches a comparable value.
SummaryFunc produces a summary of a slice by producing a string list of the first n elements, as defined by the limit, separated by the separator.
SummaryFunc produces a summary of a slice by producing a string list of the first n elements, as defined by the limit, separated by the separator.