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

Method takeAll

packages/effect/src/internal/groupBy.ts:369–371  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

367 }
368
369 get takeAll(): Effect.Effect<Chunk.Chunk<B>> {
370 return pipe(Queue.takeAll(this.dequeue), Effect.map(Chunk.map((a) => this.f(a))))
371 }
372
373 takeUpTo(max: number): Effect.Effect<Chunk.Chunk<B>> {
374 return pipe(Queue.takeUpTo(this.dequeue, max), Effect.map(Chunk.map((a) => this.f(a))))

Callers

nothing calls this directly

Calls 4

pipeFunction · 0.70
takeAllMethod · 0.65
mapMethod · 0.65
fMethod · 0.65

Tested by

no test coverage detected