ORDKEY signatureThe ORDKEY signature defines a key type which is totally
ordered. Note that anything ascribing to ORDKEY implicitly
ascribes to EQKEY as well.
type t
val equal : t * t → bool
val compare : t * t → order
val toString : t → string
type tval equal :
t * t → boolval compare :
t * t → orderLESS, EQUAL, or
GREATER as appropriate for the argument pair. This
operation is transitive. The comparison must be consistent,
that is compare (x, y) = EQUAL if and only if
equal (x, y), and compare (x, y) = LESS
if and only if compare (y, x) = GREATER.val toString :
t → string