Functor Hashtbl_common_interface.Make

module Make: 
functor (H : Hashtbl.HashedType) -> S with type key = H.t
Parameters:
H : Hashtbl.HashedType

include Hashtbl.S
val iter_sorted : ?cmp:(key -> key -> int) -> (key -> 'a -> unit) -> 'a t -> unit
Iter on the hashtbl, but respecting the order induced by cmp. Use Pervasives.compare if cmp not given.
val fold_sorted : ?cmp:(key -> key -> int) -> (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
Fold on the hashtbl, but respecting the order induced by cmp. Use Pervasives.compare if cmp not given.