Navigation
Synopsis Concatenate two tuple values.
Syntax Exp1 + Exp2
Types
Exp1 Exp2 Exp1 > Exp2
tuple[ T11, T12, ... ] tuple[ T21, T22, ... ] tuple[ T11, T12, ..., T21, T22, ... ]
Description Returns a tuple consisting of the concatenation of the tuple elements of Exp1 and Exp2.
Examples
rascal><"abc", 1, 2.5> + <true, "def">;
tuple[str,int,real,bool,str]: <"abc",1,2.5,true,"def">
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.