Lru.F
Functional LRU map.
module type S = sig ... end
Signature of functional LRU maps.
module Make : functor (K : Stdlib.Map.OrderedType) -> functor (V : Weighted) -> S with type k = K.t and type v = V.t
Make(K)(V) is the LRU map with bindings K.t -> V.t. The weight of an individual binding is the Weighted.weight of V.t.
Make(K)(V)
K.t -> V.t
Weighted.weight
V.t