Module Kv_hash__.Nv_map_ss_private

val hash : string -> int
type 'int_map t = {
values : Kv_hash.Values_file.t;
mutable nv_int_map : 'int_map;
debug : (string, string) Stdlib.Hashtbl.t;
}

A string->string map is a values file and an int->int map. The int->int map is really a map from hash(key) to offset(of value in values file).

module Make_1 : functor (S0 : sig ... end) -> sig ... end
module Make_2 : functor (Raw_bucket : Kv_hash.Bucket_intf.BUCKET) -> sig ... end

Putting it all together.

module Make_3 : functor (Raw_bucket : Kv_hash.Bucket_intf.BUCKET) -> Kv_hash.Nv_map_ss_intf.S

NOTE prefer Make_2 since it provides the Nv_map_ii_ functions

module Nv_map_ss0 : sig ... end