sequency
Version:
Functional sequences for processing iterable data in JavaScript
14 lines (13 loc) • 549 B
TypeScript
import Sequence from "./Sequence";
export declare class Reduce {
/**
* Reduces the whole sequence to a single value by invoking `operation` with each element
* from left to right. For every invocation of the operation `acc` is the result of the last
* invocation. For the first invocation of the operation `acc` is the first element of the
* sequence.
*
* @param {(acc: S, value: T) => S} operation
* @returns {S}
*/
reduce<S, T extends S>(this: Sequence<T>, operation: (acc: S, value: T) => S): S;
}