package git-unix

  1. Overview
  2. Docs
type ('key, 'value) t = {
  1. promote : 'key -> 'value -> unit;
  2. find : 'key -> 'value option;
}
val lru : int -> (module Hashtbl.HashedType with type t = 'key) -> (module Lru.Weighted with type t = 'value) -> ('key, 'value) t