Package: effect
Module: Sink
A sink that effectfully folds its inputs with the provided function and initial state.
Signature
declare const foldLeftEffect: <S, In, E, R>(s: S, f: (s: S, input: In) => Effect.Effect<S, E, R>) => Sink<S, In, In, E, R>
Since v2.0.0