Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page properties
hiddentrue



Status
Tech review

Status
titletodo

Style guide

Status
titletodo

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged



Page properties
hiddentrue


Short description

Combines the elements of two lists.

Output

Status
subtletrue
titlelist

Available since

Status
subtletrue
colourRed
titleneeds lookup




UI Text Box
sizemedium
typeinfo

This function combines two separate lists into a single list. 

The order of elements is respected and the result may contain repeated elements.


Code Block
languagebash
titleOperator
linenumberstrue
list1 APPEND list2 #Output: List


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
[1, 2, 3] APPEND [3, 4, 4]


This example returns

 [1, 2, 3, 3, 4, 4]


Code Block
languagebash
linenumberstrue
["blue", "red", "red"] APPEND ["red", "green"]


This example returns

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



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
list1

Status
subtletrue
titleText / number list

Any type of text or number list.
list2

Status
subtletrue
titleText / number list

Any type of text or number list.



UI Expand
titleOutput

This function returns a

Status
subtletrue
titlelist