import { Stream } from "@effect/core/stream/Stream/definition"; import { GroupBy } from "@effect/core/stream/GroupBy/definition/base"; /** * Partition a stream using a function and process each stream individually. * This returns a data structure that can be used to further filter down which * groups shall be processed. * * After calling apply on the GroupBy object, the remaining groups will be * processed in parallel and the resulting streams merged in a * nondeterministic fashion. * * Up to `buffer` elements may be buffered in any group stream before the * producer is backpressured. Take care to consume from all streams in order * to prevent deadlocks. * @tsplus static effect/core/stream/Stream.Aspects groupByKey * @tsplus pipeable effect/core/stream/Stream groupByKey * @tsplus location "@effect/core/stream/Stream/operations/groupByKey" */ export declare function groupByKey(f: (a: A) => K, buffer?: number): (self: import("../definition").Stream) => import("../../GroupBy").GroupBy; //# sourceMappingURL=groupByKey.d.ts.map