// ets_tracing: off import type * as T from "../../../Effect/index.js" import type * as C from "./core.js" import * as FoldEffect from "./foldEffect.js" /** * A sink that effectfully folds its inputs with the provided function and initial state. */ export function foldLeftEffect( z: S, f: (s: S, in_: In) => T.Effect ): C.Sink { return FoldEffect.foldEffect(z, (_) => true, f) }