Least Recently Used (LRU) Cache Internals
Priority : Type
Logical time at which an element was last accessed.
data LRUCache : Type -> Type -> Type
Least Recently Used (LRU) Cache based on hashing.
MkLRUCache : Nat -> Nat -> Priority -> HashPSQ k Priority v -> LRUCache k v
Eq k => Eq v => Eq (LRUCache k v)
Ord k => Ord v => Ord (LRUCache k v)
Show k => Show v => Show (LRUCache k v)