Description
Provides a simple pure LRU cache for Haskell. An LRU cache keeps recently used values and discards older ones first, which helps avoid repeated work while keeping memory use bounded.
It is useful for applications and libraries that need small in-memory caches without adding mutable infrastructure. It is a programming library and has no standalone interface.