Equations
- instInhabitedEST = inferInstanceAs (Inhabited (EStateM ε σ α))
@[inline]
Instances For
@[inline]
Equations
Instances For
@[implemented_by ST.Prim.Ref.modifyUnsafe]
Instances For
@[implemented_by ST.Prim.Ref.modifyGetUnsafe]
Equations
- ST.Prim.Ref.modifyGet r f = do let v ← ST.Prim.Ref.get r match f v with | (b, a) => do ST.Prim.Ref.set r a pure b
Instances For
@[inline]
Instances For
@[inline]
Equations
Instances For
@[inline]
def
ST.Ref.set
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α : Type}
(r : Ref σ α)
(a : α)
:
m Unit
Equations
Instances For
@[inline]
def
ST.Ref.swap
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α : Type}
(r : Ref σ α)
(a : α)
:
m α
Equations
Instances For
@[inline]
unsafe def
ST.Ref.take
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α : Type}
(r : Ref σ α)
:
m α
Equations
Instances For
@[inline]
def
ST.Ref.ptrEq
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α : Type}
(r1 r2 : Ref σ α)
:
m Bool
Equations
Instances For
@[inline]
def
ST.Ref.modify
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α : Type}
(r : Ref σ α)
(f : α → α)
:
m Unit
Equations
Instances For
@[inline]
def
ST.Ref.modifyGet
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α β : Type}
(r : Ref σ α)
(f : α → β × α)
:
m β
Instances For
def
ST.Ref.toMonadStateOf
{σ : Type}
{m : Type → Type}
[MonadLiftT (ST σ) m]
{α : Type}
(r : Ref σ α)
:
MonadStateOf α m
Equations
- r.toMonadStateOf = { get := r.get, set := r.set, modifyGet := fun {α_1 : Type} => r.modifyGet }