min
FEEL built-in function · List functions
min(list) or min(c1, …, cN)
Returns the smallest element. All elements must be comparable with each other (numbers, strings, or temporal values).
Parameters
| Parameter | Type | Description |
|---|---|---|
| list | list | comparable values, as one list or as separate arguments |
Examples
min([1, 2, 3])
1
Try it →
min("a", "b", "c")
a
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).