//#region src/iterable/reduce.d.ts declare function reduce(iterable: Iterable, reducer: (accumulator: T, value: T) => T): T; declare function reduce(iterable: Iterable, reducer: (accumulator: A, value: T) => A, initialValue: A): A; //#endregion export { reduce };