Status
Tech review

Style guide




Short description

Returns a  with all the numbers in argument l which are not in argument m. Duplicated numbers in l may appear in the output.

Output



Number list

The function returns a  with all the numbers in argument l which are not in argument m. Duplicated numbers in l may appear in the output.


If you want to avoid repetition, use the function distinct().


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



Parser expressionDescription


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


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



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a



Text list

The function returns a  with all strings in argument l which are not in argument m. Duplicated strings in l may appear in the output.


If you want to remove the output of the function except() use the function distinct().


except(string list l, string list m) #Output: String list



Parser expressionDescription


except(["blue", "red", "green", "black"], ["red", "green", "yellow"])


The function returns a ["blue", "black"]


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


returns the of Fix Version/s in sub-tasks and not in linked issues.



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.
<parameter>

Parameter description.



The function returns a