(self: Stream.Stream<A, E, R>)
| 95 | |
| 96 | /** @internal */ |
| 97 | export 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 */ |
| 101 | export const accumulateChunks = <A, E, R>(self: Stream.Stream<A, E, R>): Stream.Stream<A, E, R> => { |
nothing calls this directly
no test coverage detected