MCPcopy Index your code
hub / github.com/Effect-TS/effect / make

Function make

packages/effect/src/internal/groupBy.ts:117–125  ·  view source on GitHub ↗
(
  grouped: Stream.Stream<readonly [K, Queue.Dequeue<Take.Take<V, E>>], E, R>
)

Source from the content-addressed store, hash-verified

115
116/** @internal */
117export const make = <K, V, E, R>(
118 grouped: Stream.Stream<readonly [K, Queue.Dequeue<Take.Take<V, E>>], E, R>
119): GroupBy.GroupBy<K, V, E, R> => ({
120 [GroupByTypeId]: groupByVariance,
121 pipe() {
122 return pipeArguments(this, arguments)
123 },
124 grouped
125})
126
127// Circular with Stream
128

Callers 1

groupBy.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected