Status
Tech review

Style guide




Short description

Returns a  with all numbers, texts, or issues in argument l or in argument m without duplicated numbers.

Output




Supported list types


Number list

The function returns a  with all numbers in argument l or in argument m without duplicated numbers.


union(number list l, number list m) #Output: Number list



Parser expressionDescription


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


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



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a



Text list

Returns a with all texts in argument l or in argument m without duplicated texts.


union(text list l, text list m) #Output: Text list



Parser expressionDescription


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


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


 union(fieldValue(%{00074}, subtasks()), fieldValue(%{00074}, linkedIssues())) 


The function returns the of Fix Version/s selected among all sub-tasks and linked issues.



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a



Issue list

Returns an with all issues in argument l or in argument m without duplicated issues.


union(issue list l, issue list m) #Output: Issue list



Parser expressionDescription


union(linkedIssues(), subtasks()) 


The function returns the of linked issues and sub-tasks of current issue, without issue repetitions.



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a