Status
Tech review

Style guide




Short description

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

Output

Available since




Supported list types


Number list

This function returns a number list 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]) 


This example returns the following number list: [1, 2, 3, 4, 5]



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.
xxx

Parameter description.



This function returns a



Text list

This function returns a text list 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"])


This example returns the following text list["blue", "red", "green", "yellow"]


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


This example returns the text list of Fix Version/s selected among all sub-tasks and linked issues.



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.
xxx

Parameter description.



This function returns a



Issue list

This function returns an issue list 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()) 


This example returns the issue list of linked issues and sub-tasks of current issue, without issue repetitions.



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.
xxx

Parameter description.



This function returns an