The Union()
function produces a concept set with all the concepts from
a collection of concept sets.
Syntax
Union(concept_sets)
Returns
A new concept set with all concepts from concept_sets
.
Parameters
concept_sets
a collection of concept sets.
Examples
Union([Pallet.Colors] of [Pallets])
/* Say that there are two pallets with the values: */
/* 1.) { 'Orange', 'Blue', 'Red' } */
/* 2.) { 'Yellow', 'Green' } */
/* The result would be: { 'Orange', 'Blue', 'Red', 'Yellow', 'Green' } */
Union([Pallet.Colors] of [Pallets])
/* Say that there are three pallets with the values: */
/* 1.) { 'Orange', 'Red' } */
/* 2.) { 'Red', 'Blue' } */
/* 3.) { 'Orange' } */
/* The result would be: { 'Orange', 'Red', 'Blue' } */