import { AsyncReducer } from "https://deno.land/x/rimbu@1.2.1/stream/async/async-reducer.ts";
const { some } = AsyncReducer;
Returns an AsyncReducer
that ouputs false as long as no input value satisfies given pred
, true otherwise.
Parameters
pred: (value: T, index: number) => MaybePromise<boolean>
- a potentiall async function taking an input value and its index, and returning true if the value satisfies the predicate
Returns
AsyncReducer<T, boolean>