/
concat (List1, List2)

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

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

To view this example in the library, see (OpenBrIM Platform)

 

Example:

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

To view this example in the library, see (OpenBrIM Platform)

Related content

concat(Liste1,Liste2)
concat(Liste1,Liste2)
More like this
mergel(Lists)
mergel(Lists)
More like this
map(Loop,x.parameter) or map(List,x.parameter)
map(Loop,x.parameter) or map(List,x.parameter)
More like this
EGITIM 3 28/05/22
EGITIM 3 28/05/22
More like this
sort (List) or sort (List, x[index] or x.parameter)
sort (List) or sort (List, x[index] or x.parameter)
More like this
translate (List, offset1, offset2, offset3)
translate (List, offset1, offset2, offset3)
More like this