Module Int.Replace_polymorphic_compare

include Base.Comparisons.Infix with type t := int
val (>=) : int -> int -> bool
val (<=) : int -> int -> bool
val (=) : int -> int -> bool
val (>) : int -> int -> bool
val (<) : int -> int -> bool
val (<>) : int -> int -> bool
val equal : int -> int -> bool
val compare : int -> int -> int

compare t1 t2 returns 0 if t1 is equal to t2, a negative integer if t1 is less than t2, and a positive integer if t1 is greater than t2.

val min : int -> int -> int
val max : int -> int -> int