include Equal.S with type t := t
val equal : t Equal.equalval of_int : int -> tof_int n is:
      Less     if n < 0
      Equal    if n = 0
      Greater  if n > 0val to_int : t -> intto_int t is:
      Less     -> -1
      Equal    -> 0
      Greater  -> 1It can be useful when writing a comparison function to allow one to return Ordering.t values and transform them to ints later.
module Export : sig ... end