min(list)

The function returns the smallest value in a number list.


Bash
min(numberList) #Output: Number


Examples

Parser expression

Description

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

This example returns

1

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


This example returns the smallest remaining estimate (in minutes) among all 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