Documentation
¶
Index ¶
- Variables
- type Action
- type Checker
- type FilterFn
- type Handler
- func Check[V any](checker Checker[V]) Handler[V, V]
- func CheckTo[I, O any](checker Checker[I], handler Handler[I, O]) Handler[I, O]
- func Filter[V any](filter FilterFn[V]) Handler[V, V]
- func FilterTo[I, O any](filter FilterFn[I], handler Handler[I, O]) Handler[I, O]
- func ForEach[V any](action Action[V]) Handler[V, struct{}]
- func Limit[V any](limit int) Handler[V, V]
- func LimitTo[I, O any](limit int, handler Handler[I, O]) Handler[I, O]
- func Map[I, O any](mapper Mapper[I, O]) Handler[I, O]
- func MapTo[I, T, O any](mapper Mapper[I, T], handler Handler[T, O]) Handler[I, O]
- func Skip[V any](skip int) Handler[V, V]
- func SkipTo[I, O any](skip int, handler Handler[I, O]) Handler[I, O]
- type Mapper
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Ignore = errors.New("ignore") EOF = errors.New("EOF") )
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.