import { AsyncFlatMapIterator } from "https://deno.land/x/rimbu@1.0.3/stream/async-custom/index.ts";
Constructors
new
AsyncFlatMapIterator(source: AsyncStream<T>,
flatMapFun: () => AsyncStreamSource<T2>,
asyncStreamSourceHelpers: AsyncStreamSourceHelpers,
Properties
currentIterator: null | AsyncFastIterator<T2>
iterator: AsyncFastIterator<T>
Methods
fastNext<O>(otherwise?: AsyncOptLazy<O>): Promise<T2 | O>