import { AsyncZipAllWithItererator } from "https://deno.land/x/rimbu@1.0.3/stream/async-custom/async-fast-iterator-base.ts";
Constructors
new
AsyncZipAllWithItererator(fillValue: AsyncOptLazy<F>,
iters: [K in keyof I]: AsyncStreamSource<I[K]>,
zipFun: (...values: [K in keyof I]: I[K] | F) => MaybePromise<R>,
asyncStreamSourceHelpers: AsyncStreamSourceHelpers,
Properties
readonly
sources: AsyncFastIterator<any>[]readonly
sourcesToClose: Set<AsyncFastIterator<any>>Methods
fastNext<O>(otherwise?: AsyncOptLazy<O>): Promise<R | O>