Module Kv_hash__.Nv_map_ss_private
type 'int_map t={values : Kv_hash.Values_file.t;mutable nv_int_map : 'int_map;debug : (string, string) Stdlib.Hashtbl.t;}A
string->stringmap is a values file and anint->intmap. Theint->intmap is really a map from hash(key) to offset(of value in values file).
module Make_2 : functor (Raw_bucket : Kv_hash.Bucket_intf.BUCKET) -> sig ... endPutting it all together.
module Make_3 : functor (Raw_bucket : Kv_hash.Bucket_intf.BUCKET) -> Kv_hash.Nv_map_ss_intf.SNOTE prefer Make_2 since it provides the Nv_map_ii_ functions
module Nv_map_ss0 : sig ... end