import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Merges an `Collection>` to a single `Effect`, working * in parallel. * * Due to the parallel nature of this combinator, `f` must be both: * - commutative: `f(a, b) == f(b, a)` * - associative: `f(a, f(b, c)) == f(f(a, b), c)` * * It's unsafe to execute side effects inside `f`, as `f` may be executed * more than once for some of `in` elements during effect execution. * @tsplus static effect/core/io/Effect.Ops mergeAllPar * @tsplus location "@effect/core/io/Effect/operations/mergeAllPar" */ export declare function mergeAllPar(as: Collection>, zero: B, f: (b: B, a: A) => B): Effect; //# sourceMappingURL=mergeAllPar.d.ts.map