Supported list types

Number list

This function returns a number list with all numbers present in two lists simultaneously.

The returned list does not contain duplicates. The order is respected.

intersect(numberList1, numberList2) #Output: Number list
Parser expressionDescription
%{intersect([1, 1, 2, 3],[1, 3, 5])}

This example returns

1, 3

Parameters used in this function

ParameterInput (data type)Description
numberList1

Any type of number list. Learn more about working with lists.
numberList2

Any type number list. Learn more about working with lists.

This function returns a


Text list

Variant for text lists.

intersect(textList1, textList2) #Output: Text list
Parser expressionDescription
%{intersect(["red", "blue", "blue"],["blue", "yellow", "yellow"])}

This example returns

blue



Parameters used in this function

ParameterInput (data type)Description
textList1

Any type of text list. Learn more about working with lists.
textList2

Any type of text list. Learn more about working with lists.

This function returns a


Issue list

Variant for issue lists.

intersect(issueList1, issueList2) #Output: Issue list
Parser expressionDescription
%{intersect(linkedIssues(), subtasks())}

This example returns a list with all sub-tasks which are also linked to the current issue.

To achieve this, the following functions are used:


Parameters used in this function

ParameterInput (data type)Description
issueList1

Any type of issue list. Learn more about working with lists.
issueList2

Any type of issue list. Learn more about working with lists.

This function returns an


Status
Tech review

Style guide

Short description

Returns common elements of two lists.

Output

Available since

Label