import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Maps over elements of the stream with the specified effectful function, * partitioned by `p` executing invocations of `f` concurrently. The number of * concurrent invocations of `f` is determined by the number of different * outputs of type `K`. Up to `buffer` elements may be buffered per partition. * Transformed elements may be reordered but the order within a partition is * maintained. * @tsplus static effect/core/stream/Stream.Aspects mapEffectPartitioned * @tsplus pipeable effect/core/stream/Stream mapEffectPartitioned * @tsplus location "@effect/core/stream/Stream/operations/mapEffectPartitioned" */ export declare function mapEffectPartitioned(keyBy: (a: A) => K, f: (a: A) => Effect, buffer?: number): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mapEffectPartitioned.d.ts.map