Module Int32.Replace_polymorphic_compare

include Base.Comparisons.Infix with type t := int32
val (>=) : int32 -> int32 -> bool
val (<=) : int32 -> int32 -> bool
val (=) : int32 -> int32 -> bool
val (>) : int32 -> int32 -> bool
val (<) : int32 -> int32 -> bool
val (<>) : int32 -> int32 -> bool
val equal : int32 -> int32 -> bool
val compare : int32 -> int32 -> 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 : int32 -> int32 -> int32
val max : int32 -> int32 -> int32