type CollectFun<T,R>
A function used in collect
methods to collect values from a collection. This is basically a single-pass map and filter.
Companion namespace: CollectFun
Definition
export type CollectFun<T, R> = (value: T, index: number, skip:
CollectFun.Skip
, halt: () => void) => R
|
CollectFun.Skip
;