The State monad transformer using CPS style.
@[inline]
def
StateCpsT.runK
{α σ : Type u}
{m : Type u → Type v}
{β : Type u}
(x : StateCpsT σ m α)
(s : σ)
(k : α → σ → m β)
:
m β
Equations
- x.runK s k = x β s k
Instances For
@[always_inline]
Equations
@[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]
Equations
Instances For
Equations
- StateCpsT.instMonadLiftOfMonad = { monadLift := fun {α : Type ?u.27} => StateCpsT.lift }
@[simp]
theorem
StateCpsT.runK_pure
{α σ : Type u}
{m : Type u → Type v}
{β : Type u}
(a : α)
(s : σ)
(k : α → σ → m β)
:
@[simp]
theorem
StateCpsT.runK_get
{σ : Type u}
{m : Type u → Type v}
{β : Type u}
(s : σ)
(k : σ → σ → m β)
:
@[simp]
theorem
StateCpsT.runK_monadLift
{α σ : Type u}
{m : Type u → Type v}
{n : Type u → Type u_1}
{β : Type u}
[Monad m]
[MonadLiftT n m]
(x : n α)
(s : σ)
(k : α → σ → m β)
: