union

FEEL built-in function · List functions

union(list)

Returns all elements of the argument lists with duplicates removed, preserving first-seen order.

Parameters

ParameterTypeDescription
listlisttwo or more lists

Examples

union([1, 2], [2, 3])
[1, 2, 3] Try it →

Related functions

distinct values · concatenate

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