# Functions
Chunk returns an iterator over non overlapping sub strings of n bytes.
Collect concatenates all values form seq to a single string.
CollectHinted is like [Collect] but can hint its internal buffer size to reduce allocation per call.
CutNewLine is used with [SplitFunc].
CutUpperCase is a split function for a [SplitFunc] that splits "UpperCasedWords" into "Upper" "Cased" "Words".
CutWord is a split function for a [SplitFunc] that returns each space-separated word of text, with surrounding spaces deleted.
Join is like [Collect] but inserts sep between every 2 values from seq, which corresponds to [strings.Join].
JoinHinted is like [Join] but can hint its internal buffer size to reduce allocation per call.
RuneChunk returns an iterator over non overlapping sub strings of n utf8 characters.
SplitFunc returns an iterator over sub string of s cut by [CutterFunc].
# Type aliases
CutterFunc is used with [SplitFunc] to cut string from head.