A TextCat.T
represents a concatenation of other texts.
INTERFACETextCat ; TYPE T <: Public; Public = TEXT OBJECT a, b : TEXT; (* READONLY *) a_len, b_len : CARDINAL; (* READONLY *) a_or_b_wide : BOOLEAN; (* READONLY *) END; (* Represents: "a & b" *) PROCEDURE New (t, u: TEXT): TEXT;
Return the concatenation oft
andu
.
PROCEDURE NewMulti (READONLY x: ARRAY OF TEXT): TEXT;
Return the concatenation of all elements of x.
END TextCat.