Module Kv_hash.Nv_map_ii_intf

Persistent hashtable interface (for int->int map)

type export_t = {
partition : (int * int) list;
buckets : Bucket_intf.exported_bucket list;
}
module type S_kv = sig ... end

"General" signature, with k and r free; we actually use this signature with k=int and r=int

module type S = S_kv with type k = int and type v = int