The type of the input items.
The type of the accumulator.
The collection to transform.
An async function that mutates the accumulator for each element.
Optionalaccumulator: RThe initial accumulator value (optional, defaults to [] or {}).
Optionaloptions: TransformOptions<R>Configuration options, including concurrency limit.
A cancellable handle that resolves to the final accumulator.
Transforms a collection into an accumulator value using an async iteratee. Similar to reduce but allows in-place mutation of the accumulator. Useful for building objects or arrays incrementally.
The type of the input items.
The type of the accumulator.
The collection to transform.
An async function that mutates the accumulator for each element.
Optionalaccumulator: RThe initial accumulator value (optional, defaults to [] or {}).
Optionaloptions: TransformOptions<R>Configuration options, including concurrency limit.
A cancellable handle that resolves to the final accumulator.
Transforms a collection into an accumulator value using an async iteratee. Similar to reduce but allows in-place mutation of the accumulator. Useful for building objects or arrays incrementally.