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

include struct ... end
module Map: Core_map.Make(T)
module Set: Core_set.Make(T)