The State monad transformer using CPS style.
An alternative implementation of a state monad transformer that internally uses continuation passing style instead of tuples.
@[inline]
def
StateCpsT.run
{α σ : Type u}
{m : Type u → Type v}
[Monad m]
(x : StateCpsT σ m α)
(s : σ)
:
m (α × σ)
Executes an action from a monad with added state in the underlying monad m
. Given an initial
state, it returns a value paired with the final state.
While the state is internally represented in continuation passing style, the resulting value is the same as for a non-CPS state monad.
@[always_inline]
instance
StateCpsT.instMonadStateOf
{σ : Type u}
{m : Type u → Type v}
:
MonadStateOf σ (StateCpsT σ m)
Equations
- One or more equations did not get rendered due to their size.
@[inline]
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.
Equations
- StateCpsT.lift x x✝ s k = do let x ← x k x s
Equations
- StateCpsT.instMonadLiftOfMonad = { monadLift := fun {α : Type ?u.18} => StateCpsT.lift }