Versions in this module Expand all Collapse all v0 v0.0.1 Dec 11, 2023 Changes in this version + func DiscardCh[T any](ch <-chan T) + func Filter[T any](values []T, matcher Matcher[T]) []T + func Map[T, U any](values []T, mapper Mapper[T, U]) []U + func Reduce[T any](values []T, reducer Reducer[T]) T + type Future interface + Await func() T + Send func(T) + func NewFuture[T any]() Future[T] + type Mapper func(T) U + type Matcher func(T) bool + func Equals[T comparable](value T) Matcher[T] + func NotEquals[T comparable](value T) Matcher[T] + type Reducer func(T, T) T