distinct values

FEEL built-in function · List functions

distinct values(list)

Returns the list with duplicate elements removed, preserving first-seen order.

Parameters

ParameterTypeDescription
listlistthe source list

Examples

distinct values([1, 2, 3, 2, 1])
[1, 2, 3] Try it →

Related functions

duplicate values · union

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