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