( s: S, f: (s: S, chunk: Chunk.Chunk<In>) => S )
| 1052 | |
| 1053 | /** @internal */ |
| 1054 | export const foldLeftChunks = <S, In>( |
| 1055 | s: S, |
| 1056 | f: (s: S, chunk: Chunk.Chunk<In>) => S |
| 1057 | ): Sink.Sink<S, In> => foldChunks(s, constTrue, f) |
| 1058 | |
| 1059 | /** @internal */ |
| 1060 | export const foldLeftChunksEffect = <S, In, E, R>( |
no test coverage detected