Module Int64.Replace_polymorphic_compare

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