package core

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Int64.Replace_polymorphic_compareSource

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

Sourceval min : int64 -> int64 -> int64
Sourceval max : int64 -> int64 -> int64