An LonrealType.T
is a LONGREAL
. This interface is intended to be
used to instantiate generic interfaces and modules such as Table
and List
.
INTERFACELongrealType ; IMPORT Word; TYPE T = LONGREAL; CONST Brand = "Longreal"; PROCEDURE Equal(a, b: T): BOOLEAN;
Returna = b
. The result is undefined if eithera
orb
is anNaN
(not a number) value.
PROCEDURE Hash(a: T): Word.T;
Return a hash value derived froma
. The result is undefined if eithera
orb
is anNaN
(not a number) value.
PROCEDURE Compare(a, b: T): [-1..1];
Return-1
ifa < b
,0
ifa = b
, or+1
ifa > b
. The result is undefined if eithera
orb
is anNaN
(not a number) value.
END LongrealType.