/** * Maps the success value of this effect to an optional value. * * @tsplus getter effect/core/stm/STM asSome */ export function asSome(self: STM): STM> { return self.map(Maybe.some) }