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

Function accumulate

packages/effect/src/internal/stream.ts:97–98  ·  view source on GitHub ↗
(self: Stream.Stream<A, E, R>)

Source from the content-addressed store, hash-verified

95
96/** @internal */
97export const accumulate = <A, E, R>(self: Stream.Stream<A, E, R>): Stream.Stream<Chunk.Chunk<A>, E, R> =>
98 chunks(accumulateChunks(self))
99
100/** @internal */
101export const accumulateChunks = <A, E, R>(self: Stream.Stream<A, E, R>): Stream.Stream<A, E, R> => {

Callers

nothing calls this directly

Calls 1

accumulateChunksFunction · 0.85

Tested by

no test coverage detected