import { AsyncReducer } from "https://deno.land/x/rimbu@0.13.1/common/async-reducer.ts";
const { combineObj } = AsyncReducer;
Returns an AsyncReducer
that combines multiple input reducers
by providing input values to all of them and collecting the outputs in the shape of the given object.
Examples
Example 1
Example 1
const red = AsyncReducer.combineObj({
theSum: Reducer.sum,
theAverage: Reducer.average
});
await AsyncStream.from(Stream.range({ amount: 9 }))
.reduce(red));
// => { theSum: 36, theAverage: 4 }
Parameters
reducerObj: readonly [K in keyof R]: AsyncReducer<T, R[K]> & Record<string, AsyncReducer<T, unknown>>
- an object of keys, and reducers corresponding to those keys