module type S =sig
..end
include Hashtbl.S
val iter_sorted : ?cmp:(key -> key -> int) -> (key -> 'a -> unit) -> 'a t -> unit
cmp
. Use Pervasives.compare
if cmp
not given.val fold_sorted : ?cmp:(key -> key -> int) -> (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
cmp
. Use Pervasives.compare
if cmp
not given.