( s: S, contFn: Predicate<S>, f: (s: S, chunk: Chunk.Chunk<In>) => S )
| 932 | |
| 933 | /** @internal */ |
| 934 | export const foldChunks = <S, In>( |
| 935 | s: S, |
| 936 | contFn: Predicate<S>, |
| 937 | f: (s: S, chunk: Chunk.Chunk<In>) => S |
| 938 | ): Sink.Sink<S, In> => suspend(() => new SinkImpl(foldChunksReader(s, contFn, f))) |
| 939 | |
| 940 | /** @internal */ |
| 941 | const foldChunksReader = <S, In>( |
no test coverage detected