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