Skip to main content

class AsyncMapIterator<T,T2>

undocumented

Extends: AsyncFastIteratorBase<T>

Type parameters

NameDescription
Tundocumented
T2undocumented

Properties

mapFun

undocumented

Definition

readonly mapFun: (value: T, index: number) => MaybePromise<T2>;

return

undocumented

Definition

return?: () => Promise<any>;

Overrides

AsyncFastIteratorBase.return

source

undocumented

Definition

readonly source: AsyncFastIterator<T>;

state

undocumented

Definition

readonly state: TraverseState;

Methods

fastNext

undocumented

Definition

fastNext<O>(otherwise?: AsyncOptLazy<O>): Promise<T2 | O>;

Type parameters

NameDescription
O

Parameters

NameTypeDescription
otherwiseAsyncOptLazy<O>

Overrides

AsyncFastIteratorBase.fastNext

next

Returns a promise resolving to the next IteratorResult.

Definition

next(): Promise<IteratorResult<T>>;

Overrides

AsyncFastIterator.next, AsyncFastIteratorBase.next