Documentation

Lean.Util.MonadCache

@[inline]
def Lean.checkCache {α β : Type} {m : TypeType} [MonadCache α β m] [Monad m] (a : α) (f : Unitm β) :
m β

If entry a := b is already in the cache, then return b. Otherwise, execute b ← f (), store a := b in the cache and return b.

Equations
instance Lean.instMonadCacheReaderT {α β ρ : Type} {m : TypeType} [MonadCache α β m] :
MonadCache α β (ReaderT ρ m)
Equations
@[always_inline]
instance Lean.instMonadCacheExceptTOfMonad {α β ε : Type} {m : TypeType} [MonadCache α β m] [Monad m] :
MonadCache α β (ExceptT ε m)
Equations
class Lean.MonadHashMapCacheAdapter (α β : Type) (m : TypeType) [BEq α] [Hashable α] :

Adapter for implementing MonadCache interface using HashMaps. We just have to specify how to extract/modify the HashMap.

Instances
@[inline]
def Lean.MonadHashMapCacheAdapter.cache {α β : Type} {m : TypeType} [BEq α] [Hashable α] [MonadHashMapCacheAdapter α β m] (a : α) (b : β) :
Equations
instance Lean.MonadCacheT.instMonadHashMapCacheAdapter {ω α β : Type} {m : TypeType} [STWorld ω m] [BEq α] [Hashable α] [MonadLiftT (ST ω) m] :
Equations
@[inline]
def Lean.MonadCacheT.run {ω α β : Type} {m : TypeType} [STWorld ω m] [BEq α] [Hashable α] [MonadLiftT (ST ω) m] [Monad m] {σ : Type} (x : MonadCacheT α β m σ) :
m σ
Equations
instance Lean.MonadCacheT.instMonad {ω α β : Type} {m : TypeType} [STWorld ω m] [BEq α] [Hashable α] [Monad m] :
Monad (MonadCacheT α β m)
Equations
Equations
@[inline]
def Lean.MonadStateCacheT.run {α β : Type} {m : TypeType} [BEq α] [Hashable α] [Monad m] {σ : Type} (x : MonadStateCacheT α β m σ) :
m σ
Equations