(s: S, f: (s: S, input: In) => S)
| 1048 | |
| 1049 | /** @internal */ |
| 1050 | export const foldLeft = <S, In>(s: S, f: (s: S, input: In) => S): Sink.Sink<S, In> => |
| 1051 | ignoreLeftover(fold(s, constTrue, f)) |
| 1052 | |
| 1053 | /** @internal */ |
| 1054 | export const foldLeftChunks = <S, In>( |
nothing calls this directly
no test coverage detected