UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

18 lines (16 loc) 403 B
import * as GB from "../../GroupBy/index.mjs"; /** * More powerful version of `Stream.groupByKey` */ export function groupBy_(self, f, buffer = 16) { return GB.make_(self, f, buffer); } /** * More powerful version of `Stream.groupByKey` * * @ets_data_first groupBy_ */ export function groupBy(f, buffer = 16) { return self => groupBy_(self, f, buffer); } //# sourceMappingURL=groupBy.mjs.map