(n: number)
| 88 | |
| 89 | /** @internal */ |
| 90 | export const collectAllN = <In>(n: number): Sink.Sink<Chunk.Chunk<In>, In, In> => |
| 91 | suspend(() => fromChannel(collectAllNLoop(n, Chunk.empty()))) |
| 92 | |
| 93 | /** @internal */ |
| 94 | const collectAllNLoop = <In>( |
nothing calls this directly
no test coverage detected