sig
module type OrderedType =
sig
type t
val compare : Map.OrderedType.t -> Map.OrderedType.t -> int
end
module type S =
sig
type key
type +'a t
val empty : 'a Map.S.t
val is_empty : 'a Map.S.t -> bool
val add : Map.S.key -> 'a -> 'a Map.S.t -> 'a Map.S.t
val find : Map.S.key -> 'a Map.S.t -> 'a
val remove : Map.S.key -> 'a Map.S.t -> 'a Map.S.t
val mem : Map.S.key -> 'a Map.S.t -> bool
val iter : (Map.S.key -> 'a -> unit) -> 'a Map.S.t -> unit
val map : ('a -> 'b) -> 'a Map.S.t -> 'b Map.S.t
val mapi : (Map.S.key -> 'a -> 'b) -> 'a Map.S.t -> 'b Map.S.t
val fold : (Map.S.key -> 'a -> 'b -> 'b) -> 'a Map.S.t -> 'b -> 'b
val compare : ('a -> 'a -> int) -> 'a Map.S.t -> 'a Map.S.t -> int
val equal : ('a -> 'a -> bool) -> 'a Map.S.t -> 'a Map.S.t -> bool
end
module Make :
functor (Ord : OrderedType) ->
sig
type key = Ord.t
type +'a t
val empty : 'a t
val is_empty : 'a t -> bool
val add : key -> 'a -> 'a t -> 'a t
val find : key -> 'a t -> 'a
val remove : key -> 'a t -> 'a t
val mem : key -> 'a t -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val map : ('a -> 'b) -> 'a t -> 'b t
val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
end
end