Functor Comparable.Make


module Make: 
functor (T : sig
type t 
include Sexpable.S
val compare : t -> t -> int
end) -> sig .. end
Parameters:
T : sig type t include Sexpable.S with type sexpable = t val compare : t -> t -> int end

type comparable = T.t 
val compare : T.t -> T.t -> int
val ascending : T.t -> T.t -> int
val descending : T.t -> T.t -> int
include Infix
val min : T.t -> T.t -> T.t
val max : T.t -> T.t -> T.t
module Map: Map.Make(T)
module Set: Set.Make(T)