/** * Returns an effect with the optional value. * * @tsplus static effect/core/stm/STM.Ops some */ export function succeedSome(a: A): USTM> { return STM.succeed(Maybe.some(a)) }