max(list)

This function returns the highest value in a given number list.


Bash
max(numberList) #Output: Number


Examples

Parser expression

Description

Bash
max([1, 2, 5, 4, 3]) 

This example returns

5

Bash
 max(fieldValue({issue.estimate}, linkedIssues("is blocked by")))


This example returns the highest remaining estimate (in minutes) among the blocking issues.

To achieve this, the following functions are used:

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

numberList

number list

Any given number list.

Output

This function returns a number


📚 Use cases and examples