concat (List1, List2)

The function takes two separate lists as input and combines them into a single list. The result is a merged version of the two input lists, with all the elements from both lists present in the output list in the order they were provided.

The resulting list is showing in the list3 parameter.

Example:

concat (List1, List2) → List of list

<br><O N="concatObject1" T="Project" Category="Functions" TransAlignRule="1"><br> <!-- created by ParamML Examples on 13.02.2023 --><br> <O N="F1" T="Group"><br> <P N="List1" V="[10,5,20]" /><br> <P N="List2" V="[12,16,18]" /><br> <P N="List3" V="concat(List1,List2)" /><br> </O><br> <O N="F2" T="Group"><br> <P N="List1" V="[[10,5],[20,15]]" /><br> <P N="List2" V="[[12,14],[16,18]]" /><br> <P N="List3" V="concat(List1,List2)" /><br> </O><br></O><br>

Example:

<br><O N="concatObject2" T="Project" Category="Functions" TransAlignRule="1"><br> <!-- created by ParamML Examples on 13.02.2023 --><br> <P N="List1" V="[0,1,2,3,4,5,6,7,8,9]" /><br> <P N="Line1" V="[[10,15,20],[15,20,25],1]" /><br> <P N="concatexample" V="concat(List1, Line1)" /><br></O><br>

Last updated