![]() |
| ||||||
Navigation |
Synopsis Concatenate two tuple values.
Syntax
Exp1 + Exp2
Types
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">
![]() |