import { GroupByInternal } from "@effect/core/stream/GroupBy/operations/_internal/GroupByInternal" /** * Constructs a new `GroupBy`. * * @tsplus static effect/core/stream/GroupBy.Ops __call */ export function make( stream: Stream, key: (a: A) => Effect, buffer: number ): GroupBy { return new GroupByInternal(stream, key, buffer) }