package
0.6.0
Repository: https://github.com/go-board/std.git
Documentation: pkg.go.dev

# Functions

Collect collects all elements in [iter.Seq] to collector.
Distinct remove duplicated elements in [iter.Seq] and returns a new [iter.Seq] which elements yield in visit order.
DistinctFunc remove duplicated elements in [iter.Seq] and returns a new [iter.Seq] which elements yield in visit order.
GroupBy collects all elements in [iter.Seq] and group by key using given function.
Partition creates two [iter.Seq], split by the given predicate function.
ToMap collects all elements in [iter.Seq] to map.
No description provided by the author
ToOrderedMapFunc collects all elements in [iter.Seq] to ordered map.
No description provided by the author
ToOrderedSetFunc collects all elements in [iter.Seq] to ordered set.
ToSlice collects all elements in [iter.Seq] to slice.

# Interfaces

Collector collect all elements in [iter.Seq] to dest type.