Status
Tech review

Style guide




Short description

Returns a  with all numbers/texts/issues in arguments l and m. Duplicated numbers may appear in the output

Output




The function is used with the following lists:



With a Number list

The function returns a with all numbers in arguments l and m. Duplicated numbers may appear in the output.


If you want to avoid repetition, use the function union(l,m).


append(stringListl, stringList2) #Output: Number list



Parser expressionDescription


append([1, 2, 3], [3, 4, 5])


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


append(fieldValue({00025}, linkedIssues("is blocked by")), fieldValue({00025}, subtasks()))


The function returns a with Total time Spent (in minutes) in blocking issues and sub-tasks. This number list can be summed using function sum().



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a



With a Text list

The function returns a with all strings in arguments l and m. The duplicated strings may appear in the output


If you want to avoid repetition, use the function union(l,m).


append(string list l, string list m) #Output: Text list



Parser expressionDescription


append(["blue", "red", "green"], ["red", "green", "yellow"])


The function returns a ["blue", "red", "green", "red", "green", "yellow"]


append(fieldValue(%{00074}, subtasks()), fieldValue(%{00074}, linkedIssues("is blocked by")))


The function returns a with Fix Version/s of sub-tasks and blocking issues.



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a