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