@[reducible, inline]
Equations
Instances For
Instances For
@[reducible, inline]
Instances For
- Map : Type
- Set : Type
- mapFind? : self.Map → ShareCommon.Object → Option ShareCommon.Object
- mapInsert : self.Map → ShareCommon.Object → ShareCommon.Object → self.Map
- setFind? : self.Set → ShareCommon.Object → Option ShareCommon.Object
- setInsert : self.Set → ShareCommon.Object → self.Set
Instances For
@[reducible, inline]
Equations
Instances For
@[extern lean_sharecommon_eq]
@[extern lean_sharecommon_hash]
Instances For
Instances For
@[implemented_by ShareCommon.StateFactory.mkImpl]
Instances For
Internally State
is implemented as a pair ObjectMap
and ObjectSet
Equations
- ⋯ = ⋯
Instances For
@[implemented_by ShareCommon.mkStateImpl]
Equations
- ShareCommon.instInhabitedState = { default := ShareCommon.State.mk σ }
@[extern lean_state_sharecommon]
def
ShareCommon.State.shareCommon
{α : Type u_1}
{σ : ShareCommon.StateFactory}
(s : ShareCommon.State σ)
(a : α)
:
α × ShareCommon.State σ
Equations
- s.shareCommon a = (a, s)
Instances For
@[reducible, inline]
abbrev
withShareCommon
{m : Type u_1 → Type u_2}
[self : MonadShareCommon m]
{α : Type u_1}
:
α → m α
Instances For
@[reducible, inline]
Equations
Instances For
@[reducible, inline]
abbrev
ShareCommonT
(σ : ShareCommon.StateFactory)
(m : Type u → Type v)
(α : Type u)
:
Type (max u v)
Equations
- ShareCommonT σ m = StateT (ShareCommon.State σ) m
Instances For
@[specialize #[]]
def
ShareCommonT.withShareCommon
{m : Type u_1 → Type u_2}
{α : Type u_1}
{σ : ShareCommon.StateFactory}
[Monad m]
(a : α)
:
ShareCommonT σ m α
Equations
- ShareCommonT.withShareCommon a = modifyGet fun (s : ShareCommon.State σ) => s.shareCommon a
Instances For
instance
ShareCommonT.monadShareCommon
{m : Type u_1 → Type u_2}
{σ : ShareCommon.StateFactory}
[Monad m]
:
MonadShareCommon (ShareCommonT σ m)
@[inline]
def
ShareCommonT.run
{m : Type u_1 → Type u_2}
{σ : ShareCommon.StateFactory}
{α : Type u_1}
[Monad m]
(x : ShareCommonT σ m α)
:
m α
Equations
- x.run = StateT.run' x default
Instances For
@[extern lean_sharecommon_quick]
A more restrictive but efficient max sharing primitive.
Remark: it optimizes the number of RC operations, and the strategy for caching results.