( s: S, f: (s: S, input: In) => Effect.Effect<S, E, R> )
| 1064 | |
| 1065 | /** @internal */ |
| 1066 | export const foldLeftEffect = <S, In, E, R>( |
| 1067 | s: S, |
| 1068 | f: (s: S, input: In) => Effect.Effect<S, E, R> |
| 1069 | ): Sink.Sink<S, In, In, E, R> => foldEffect(s, constTrue, f) |
| 1070 | |
| 1071 | /** @internal */ |
| 1072 | export const foldUntil = <S, In>(s: S, max: number, f: (s: S, input: In) => S): Sink.Sink<S, In, In> => |
nothing calls this directly
no test coverage detected