( s: S, f: (s: S, chunk: Chunk.Chunk<In>) => Effect.Effect<S, E, R> )
| 1058 | |
| 1059 | /** @internal */ |
| 1060 | export const foldLeftChunksEffect = <S, In, E, R>( |
| 1061 | s: S, |
| 1062 | f: (s: S, chunk: Chunk.Chunk<In>) => Effect.Effect<S, E, R> |
| 1063 | ): Sink.Sink<S, In, never, E, R> => ignoreLeftover(foldChunksEffect(s, constTrue, f)) |
| 1064 | |
| 1065 | /** @internal */ |
| 1066 | export const foldLeftEffect = <S, In, E, R>( |
nothing calls this directly
no test coverage detected