module type MAP = sig .. end
sig
end
Map.S
type key
type 'a t
'a
val empty : 'a t
'a t
val add : key -> 'a -> 'a t -> 'a t
key -> 'a -> 'a t -> 'a t
val iter : (key -> 'a -> unit) -> 'a t -> unit
(key -> 'a -> unit) -> 'a t -> unit
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
(key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b