import { AsyncFilterPureIterator } from "https://deno.land/x/rimbu@1.0.3/stream/async-custom/async-fast-iterator-base.ts";
Constructors
new
AsyncFilterPureIterator(source: AsyncFastIterator<T>,
pred: (value: T, ...args: A) => MaybePromise<boolean>,
args: A,
invert: boolean,
Methods
fastNext<O>(otherwise?: AsyncOptLazy<O>): Promise<T | O>