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