Module LRUHashtblTests.LRUHash
type key = IStdlib.IStd.Int.t
val create : initial_size:int -> max_size:int -> 'a t
val find_opt : 'a t -> key -> 'a option
val replace : 'a t -> key -> 'a -> unit
val remove : 'a t -> key -> unit
val pp :
pp_key:(Stdlib.Format.formatter -> key -> unit) ->
pp_v:(Stdlib.Format.formatter -> 'a -> unit) ->
Stdlib.Format.formatter ->
'a t ->
unit
val bindings : 'a t -> (key * 'a) list