Module IStdlib.RecencyMap
module type Config = sig ... end
module type S = sig ... end
A functional map interface where only the
N
most recently-accessed elements are guaranteed to be persisted, similarly to an LRU cache. The map stores at most2*N
elements.