You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

The function returns a T/N LIST with elements in l followed by elements in m. therefore the number of elements is the sum of the number of elements in l and m.
The order is respected and It may contain repeated elements.

Operator
l APPEND m #Output: Text/Number list
Examples
Parser expressionDescription
[1, 2, 3] APPEND [3, 4, 4]

The function returns a NUMBER LIST: [1, 2, 3, 3, 4, 4]

["blue", "red", "red"] APPEND ["red", "green"]

The function returns a STRING LIST ["blue", "red", "red", "red", "green"]

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a T/N LIST