Skip to main content

class ZipAllWithItererator<I,F,R>

undocumented

Extends: FastIteratorBase<T>

Type parameters

NameConstraintsDescription
Ireadonly unknown[]undocumented
Fundocumented
Rundocumented

Properties

allDone

undocumented

Definition

allDone: boolean;

fillValue

undocumented

Definition

readonly fillValue: OptLazy<F>;

iters

undocumented

Definition

readonly iters: {
    [K in keyof I]: StreamSource<I[K]>;
  };

sources

undocumented

Definition

readonly sources: FastIterator<any>[];

zipFun

undocumented

Definition

readonly zipFun: (...values: {
    [K in keyof I]: I[K] | F;
  }) => R;

Methods

fastNext

undocumented

Definition

fastNext<O>(otherwise?: OptLazy<O>): R | O;

Type parameters

NameDescription
O

Parameters

NameTypeDescription
otherwiseOptLazy<O>

Overrides

FastIteratorBase.fastNext

next

Returns the next IteratorResult.

Definition

next(): IteratorResult<T>;

Overrides

FastIterator.next, FastIteratorBase.next