/** * Returns an effect with the value on the left part. * * @tsplus static effect/core/stm/STM.Ops left */ export function succeedLeft(value: A): USTM> { return STM.succeed(Either.left(value)) }