Equations
- instToBoolOption = { toBool := Option.isSome }
Converts an action that returns an Option
into one that might fail, with none
indicating
failure.
Equations
- OptionT.mk x = x
Instances For
@[inline]
Succeeds with the provided value.
Equations
- OptionT.pure a = OptionT.mk (pure (some a))
Instances For
@[inline]
A recoverable failure.
Equations
Instances For
Equations
- OptionT.instAlternative = { toApplicative := Monad.toApplicative, failure := fun {α : Type ?u.15} => OptionT.fail, orElse := fun {α : Type ?u.15} => OptionT.orElse }
@[inline]
Converts a computation from the underlying monad into one that could fail, even though it does not.
This function is typically implicitly accessed via a MonadLiftT
instance as part of automatic
lifting.
Equations
- OptionT.lift x = OptionT.mk do let __do_lift ← x pure (some __do_lift)
Instances For
Equations
- OptionT.instMonadLift = { monadLift := fun {α : Type ?u.14} => OptionT.lift }
Equations
- OptionT.instMonadFunctor = { monadMap := fun {α : Type ?u.14} (f : {β : Type ?u.14} → m β → m β) (x : OptionT m α) => f x }
instance
OptionT.instMonadExceptOfUnit
{m : Type u → Type v}
[Monad m]
:
MonadExceptOf Unit (OptionT m)
Equations
- OptionT.instMonadExceptOfUnit = { throw := fun {α : Type ?u.16} (x : Unit) => OptionT.fail, tryCatch := fun {α : Type ?u.16} => OptionT.tryCatch }
instance
OptionT.instMonadExceptOf
{m : Type u → Type v}
(ε : Type u)
[MonadExceptOf ε m]
:
MonadExceptOf ε (OptionT m)
Equations
- One or more equations did not get rendered due to their size.
instance
instMonadControlOptionTOfMonad
{m : Type u_1 → Type u_2}
[Monad m]
:
MonadControl m (OptionT m)
Equations
- One or more equations did not get rendered due to their size.