# Functions
Collect returns all values from the stream as a slice.
No description provided by the author
Filter returns a stream with only the elements that match the given predicate.
FlatMap returns a new merged stream with the given function applied to each element and the results merged into a single stream.
ForEach applies the given function to each value in the stream.
From returns a stream from a given slice.
No description provided by the author
LinesFrom returns a stream of lines from the given input.
Lookahead returns a stream in which we can look ahead from the current point.
Map returns a new stream with the given function applied to each element.
Partition splits a stream into two streams based on the result of the goLeft function.
Reduce returns a single value from the stream by applying the reducer function to each value in the stream.
No description provided by the author
SplitBy returns a stream of strings split by the given byte.
Sum returns the sum of all values in the stream.
SumToString returns the sum of all values in the stream as a string.
# Structs
No description provided by the author