Module Binsec.Hashamt

Implementation of Hash-Array Mapped Tries

HAMT is a very efficient persistent data structures for dictionaries

module type S = sig ... end
module Make (H : Hashtbl.HashedType) : S with type key = H.t