Module type Hashtbl.Persistent

A hashtable in which bindings are serialised to disk, such as Index.

type t
type key
type value

We have three types (t, key and value) and three type variables:

val create : int -> t
val replace : t -> key -> value -> unit
val remove : t -> key -> unit
val find_opt : t -> key -> value option