Module Comparable.Make
Parameters
T : sig ... end
Signature
include Base__.Comparable_intf.Validate with type t := T.t
val validate_bound : min:T.t Maybe_bound.t -> max:T.t Maybe_bound.t -> T.t Validate.checkval validate_ubound : max:T.t Maybe_bound.t -> T.t Validate.checkval validate_lbound : min:T.t Maybe_bound.t -> T.t Validate.check
include Comparator.S with type t := T.t
val comparator : (T.t, comparator_witness) Comparator.comparator
val clamp : T.t -> min:T.t -> max:T.t -> T.t Or_error.tval clamp_exn : T.t -> min:T.t -> max:T.t -> T.tclamp_exn t ~min ~maxreturnst', the closest value totsuch thatbetween t' ~low:min ~high:maxis true.Raises if
not (min <= max).
val descending : T.t -> T.t -> intval ascending : T.t -> T.t -> intascendingis identical tocompare.descending x y = ascending y x. These are intended to be mnemonic when used likeList.sort ~compare:ascendingandList.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.