Documentation

Init.System.ST

@[reducible, inline]
abbrev ST (σ : Type) :
Equations
Instances For
instance instMonadEST (ε σ : Type) :
Monad (EST ε σ)
Equations
instance instInhabitedEST {ε σ α : Type} [Inhabited ε] :
Inhabited (EST ε σ α)
Equations
instance instMonadST (σ : Type) :
Monad (ST σ)
Equations
instance instSTWorldOfMonadLift {σ : Type} {m n : TypeType} [MonadLift m n] [STWorld σ m] :
STWorld σ n
Equations
instance instSTWorldEST {ε σ : Type} :
STWorld σ (EST ε σ)
Equations
@[noinline]
def runEST {ε α : Type} (x : (σ : Type) → EST ε σ α) :
Except ε α
Equations
@[noinline]
def runST {α : Type} (x : (σ : Type) → ST σ α) :
α
Equations
@[always_inline]
instance instMonadLiftSTEST {ε σ : Type} :
MonadLift (ST σ) (EST ε σ)
Equations
  • One or more equations did not get rendered due to their size.
structure ST.Ref (σ α : Type) :
Instances For
instance ST.instNonemptyRef {σ α : Type} [s : Nonempty α] :
Nonempty (Ref σ α)
@[extern lean_st_mk_ref]
opaque ST.Prim.mkRef {σ α : Type} (a : α) :
ST σ (Ref σ α)
@[extern lean_st_ref_get]
opaque ST.Prim.Ref.get {σ α : Type} (r : Ref σ α) :
ST σ α
@[extern lean_st_ref_set]
opaque ST.Prim.Ref.set {σ α : Type} (r : Ref σ α) (a : α) :
ST σ Unit
@[extern lean_st_ref_swap]
opaque ST.Prim.Ref.swap {σ α : Type} (r : Ref σ α) (a : α) :
ST σ α
@[extern lean_st_ref_take]
unsafe opaque ST.Prim.Ref.take {σ α : Type} (r : Ref σ α) :
ST σ α
@[extern lean_st_ref_ptr_eq]
opaque ST.Prim.Ref.ptrEq {σ α : Type} (r1 r2 : Ref σ α) :
ST σ Bool
@[inline]
unsafe def ST.Prim.Ref.modifyUnsafe {σ α : Type} (r : Ref σ α) (f : αα) :
ST σ Unit
Equations
@[inline]
unsafe def ST.Prim.Ref.modifyGetUnsafe {σ α β : Type} (r : Ref σ α) (f : αβ × α) :
ST σ β
Equations
@[implemented_by ST.Prim.Ref.modifyUnsafe]
def ST.Prim.Ref.modify {σ α : Type} (r : Ref σ α) (f : αα) :
ST σ Unit
Equations
@[implemented_by ST.Prim.Ref.modifyGetUnsafe]
def ST.Prim.Ref.modifyGet {σ α β : Type} (r : Ref σ α) (f : αβ × α) :
ST σ β
Equations
@[inline]
def ST.mkRef {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (a : α) :
m (Ref σ α)
Equations
@[inline]
def ST.Ref.get {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r : Ref σ α) :
m α
Equations
@[inline]
def ST.Ref.set {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r : Ref σ α) (a : α) :
Equations
@[inline]
def ST.Ref.swap {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r : Ref σ α) (a : α) :
m α
Equations
@[inline]
unsafe def ST.Ref.take {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r : Ref σ α) :
m α
Equations
@[inline]
def ST.Ref.ptrEq {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r1 r2 : Ref σ α) :
Equations
@[inline]
def ST.Ref.modify {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r : Ref σ α) (f : αα) :
Equations
@[inline]
def ST.Ref.modifyGet {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α β : Type} (r : Ref σ α) (f : αβ × α) :
m β
Equations
def ST.Ref.toMonadStateOf {σ : Type} {m : TypeType} [MonadLiftT (ST σ) m] {α : Type} (r : Ref σ α) :
Equations