A Text16.T is a text containing only 16-bit or WIDECHAR characters. 
INTERFACEText16 ; TYPE T <: Public; Public = TEXT OBJECT contents: REF ARRAY OF WIDECHAR; END; (* The array contains the characters of the text followed by a '\x0000'. *) PROCEDURE New (READONLY a: ARRAY OF WIDECHAR): TEXT;
 Return a new text containing the characters of a. PROCEDURE Create (n: CARDINAL): T;
Create a new text capable of holdingncharacters. Note that the length of thecontentsarray isn+1because of the null termination. The characters at positions[0..n-1]are left undefined. The character at positionnis '\x0000'
END Text16.