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

ParameterTypeDescription
listlistcomparable values, as one list or as separate arguments

Examples

min([1, 2, 3])
min("a", "b", "c")

Related functions

max · mean · median

Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).