This function combines two separate lists into a single list.
The order of elements is respected and the result may contain duplicates.
Operator
list1 APPEND list2 #Output: List
This function combines two separate lists into a single list.
The order of elements is respected and the result may contain duplicates.
list1 APPEND list2 #Output: List
Parser expression | Description |
---|---|
[1, 2, 3] APPEND [3, 4, 4] | This example returns [1, 2, 3, 3, 4, 4] |
["blue", "red", "red"] APPEND ["red", "green"] | This example returns ["blue", "red", "red", "red", "green"] |
Parameters used in this function
Parameter | Input (data type) | Description |
---|---|---|
list1 | LIST | Any type of text, number or issue list. Learn more about working with lists. |
list2 | LIST | Any type of text, number or issue list. Learn more about working with lists. |
This function returns a LIST
Powered by Atlassian Confluence 8.5.16, themed by Refined 7.6.0 and Decadis AG