Recovers from errors. The state is rolled back on error recovery. Typically used via the <|>
operator.
Instances For
Fails with a recoverable error. The state is rolled back on error recovery.
Equations
Instances For
Equations
- StateT.instAlternative = { toApplicative := Monad.toApplicative, failure := fun {α : Type ?u.23} => StateT.failure, orElse := fun {α : Type ?u.23} => StateT.orElse }
Replaces the mutable state with a new value.
Equations
- StateT.set s' x✝ = pure (PUnit.unit, s')
Instances For
Applies a function to the current state that both computes a new state and a value. The new state replaces the current state, and the value is returned.
It is equivalent to do let (a, s) := f (← StateT.get); StateT.set s; pure a
. However, using
StateT.modifyGet
may lead to better performance because it doesn't add a new reference to the
state value, and additional references can inhibit in-place updates of data.
Equations
- StateT.modifyGet f s = pure (f s)
Instances For
Runs an action from the underlying monad in the monad with state. The state is not modified.
This function is typically implicitly accessed via a MonadLiftT
instance as part of automatic
lifting.
Instances For
Equations
- StateT.instMonadLift = { monadLift := fun {α : Type ?u.18} => StateT.lift }
Equations
- StateT.instMonadFunctor σ m = { monadMap := fun {α : Type ?u.19} (f : {β : Type ?u.19} → m β → m β) (x : StateT σ m α) (s : σ) => f (x s) }
Equations
- One or more equations did not get rendered due to their size.
Creates a suitable implementation of ForIn.forIn
from a ForM
instance.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- instMonadStateOfStateTOfMonad = { get := StateT.get, set := StateT.set, modifyGet := fun {α : Type ?u.18} => StateT.modifyGet }
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.