Module Comparable.Make_using_comparator
Parameters
T : sig ... end
Signature
val 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.
val descending : T.t -> T.t -> intval between : T.t -> low:T.t -> high:T.t -> boolbetween t ~low ~highmeanslow <= t <= high
val 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 clamp : T.t -> min:T.t -> max:T.t -> T.t Base.Or_error.t
include Base.Comparator.S with type t := T.t with type comparator_witness := T.comparator_witness
val comparator : (T.t, T.comparator_witness) Base.Comparator.comparator
include Base__.Comparable_intf.Validate with type t := T.t
val validate_bound : min:T.t Base.Maybe_bound.t -> max:T.t Base.Maybe_bound.t -> T.t Base.Validate.checkval validate_ubound : max:T.t Base.Maybe_bound.t -> T.t Base.Validate.checkval validate_lbound : min:T.t Base.Maybe_bound.t -> T.t Base.Validate.check