Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
Syntax
List.Union(lists as list, optional equationCriteria as any) as list
About
Takes a list of lists lists, unions the items in the individual lists and returns them in the output list. As a result, the returned list contains all items in any input lists. This operation maintains traditional bag semantics, so duplicate values are matched as part of the Union. An optional equation criteria value, equationCriteria, can be specified to control equality testing.
Example
Create a union of the list {1..5}, {2..6}, {3..7}.
Usage
List.Union({{1..5}, {2..6}, {3..7}})
Output
{1, 2, 3, 4, 5, 6, 7}