context merge

FEEL built-in function · Context functions

context merge(contexts)

Combines a list of contexts into one; later entries overwrite earlier ones with the same key.

Parameters

ParameterTypeDescription
contextslist of contextsthe contexts to combine, in order

Examples

context merge([{x: 1}, {y: 2}, {x: 3}])
{x=3, y=2} Try it →

Related functions

context put · context

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