import { AsyncReducer } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";
const { some } = AsyncReducer;
Returns a Reducer
that ouputs false as long as no input value satisfies given pred
, true otherwise.
Examples
Example 1
Example 1
await AsyncStream.from(Stream.range{ amount: 10 })).reduce(AsyncReducer.some(async v => v > 5))
// => true
Parameters
pred: (value: T, index: number) => MaybePromise<boolean>
- a function taking an input value and its index, and returning true if the value satisfies the predicate
Returns
AsyncReducer<T, boolean>