Documentation
¶
Index ¶
- func BufferTime[V any](seq iter.Seq[V], d time.Duration) iter.Seq[[]V]
- func Chunk[V any](seq iter.Seq[V], n int) iter.Seq[[]V]
- func Concat[T any](seqs ...iter.Seq[T]) iter.Seq[T]
- func Count[T any](seq iter.Seq[T]) int
- func DebounceTime[V any](seq iter.Seq[V], d time.Duration) iter.Seq[V]
- func Filter[V any](seq iter.Seq[V], filter func(e V) bool) iter.Seq[V]
- func Flatten[T any](seq iter.Seq[iter.Seq[T]]) iter.Seq[T]
- func Fold[T any](seq iter.Seq[T], reducer func(T, T) T) T
- func Map[I any, O any](seq iter.Seq[I], m func(e I) O) iter.Seq[O]
- func Merge[T any](seqs ...iter.Seq[T]) iter.Seq[T]
- func Of[V any](values ...V) iter.Seq[V]
- func Recv[T any](c <-chan T) iter.Seq[T]
- func RecvContext[T any](ctx context.Context, value <-chan T) iter.Seq[T]
- func Reduce[T any, R any](seq iter.Seq[T], initial R, reducer func(r R, i T) R) R
- func Seq[V any](seq iter.Seq[V]) iter.Seq[V]
- func Skip[T any](seq iter.Seq[T], n int) iter.Seq[T]
- func SwitchMap[I any, O any](seq iter.Seq[I], m func(e I) iter.Seq[O]) iter.Seq[O]
- func Take[T any](seq iter.Seq[T], n int) iter.Seq[T]
- func Tap[V any](seq iter.Seq[V], tap func(e V)) iter.Seq[V]
- func ThrottleTime[V any](seq iter.Seq[V], d time.Duration) iter.Seq[V]
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.