You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Supported list types

Number list

This function returns a number list with all numbers in list l without any duplication.

Syntax
distinct(number list l) #Output: Number list
Examples
Parser expressionDescription
distinct([1, 2, 1, 3, 4, 4, 5])

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

distinct(fieldValue({00012}, linkedIssues("is cloned by")))

This example returns a number list of dates containing due dates of cloning issues, with only one occurrence per due date, although more than one issue may share the same due date.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns a NUMBER LIST


Text list

This function returns a text list with all text in list l without any duplication.

Syntax
distinct(string list l) #Output: Text list
Examples
Parser expressionDescription
distinct(["blue", "green", "yellow", "blue", "yellow"])

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

distinct(fieldValue(%{00003}, subtasks())) 

This example returns a text list of assignees to sub-tasks, with only one occurrence per user, although a user may have more than one sub-task assigned.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
xxx

DATA TYPE

Parameter description.
Output

The function returns a TEXT LIST


Issue list

This function returns an issue list with all issues in list l without any duplication.

Syntax
distinct(issue list l) #Output: Issue list
Examples
Parser expressionDescription
distinct(linkedIssues())

This example returns an issue list of linked issues, with only one occurrence per issue, although an issue may be linked with more than one issue link type.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST