sum

FEEL built-in function · List functions

sum(list) or sum(n1, , nN)

Returns the sum of the numbers. The sum of an empty list is null.

Parameters

ParameterTypeDescription
listlist of numbersnumbers, as one list or as separate arguments

Examples

sum([1, 2, 3])
sum([])

Related functions

mean · product · count

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