An Address.T is an ADDRESS. This interface is intended to be
used to instantiate generic interfaces and modules such as Table
and List.
INTERFACEAddress ; IMPORT Word; TYPE T = ADDRESS; CONST Brand = "Address"; PROCEDURE Equal(a, b: T): BOOLEAN;
Return a = b. PROCEDURE Hash(a: T): Word.T;
Return a. PROCEDURE Compare(a, b: T): [-1..1];
Return-1ifa < b,0ifa = b, or+1ifa > b.
END Address.