up previous next
concat

concatenate lists

Syntax
concat(L_1:LIST,...,L_n:LIST):LIST

Description
This function returns the list obtained by concatenating lists L_1,...,L_n .

Example
/**/  concat([1,2,3],[4,5],[],[6]);
[1, 2, 3, 4, 5, 6]

See Also