import { TArray } from "@effect/core/stm/TArray/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; /** * Atomically folds using a pure function. * @tsplus static effect/core/stm/TArray.Aspects reduce * @tsplus pipeable effect/core/stm/TArray reduce * @tsplus location "@effect/core/stm/TArray/operations/reduce" */ export declare function reduce(zero: Z, f: (z: Z, a: A) => Z): (self: TArray) => STM; //# sourceMappingURL=reduce.d.ts.map