module type S = sig ... endSignature of mutable LRU maps.
module Make : functor (K : Stdlib.Hashtbl.HashedType) -> functor (V : Weighted) -> S with type k = K.t and type v = V.tMake(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.
module MakeSeeded : functor (K : Stdlib.Hashtbl.SeededHashedType) -> functor (V : Weighted) -> S with type k = K.t and type v = V.tMakeSeeded(K)(V) is a variant backed by Hashtbl.SeededS.