Functor Comparable.Make_common

module Make_common: 
functor (T : sig
type t 
val compare : t -> t -> int
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
end) -> sig .. end
Parameters:
T : sig type t with sexp val compare : t -> t -> int end

type t = T.t 
module Replace_polymorphic_compare: sig .. end
include Replace_polymorphic_compare.Without_squelch
val ascending : T.t -> T.t -> int
val descending : T.t -> T.t -> int
val between : T.t -> low:T.t -> high:T.t -> bool