List.Union
Accepts a list of lists as input, combines the elements within each list, and returns them as a single output list. This function ensures that all elements from the input lists are included in the out...
Accepts a list of lists as input, combines the elements within each list, and returns them as a single output list. This function ensures that all elements from the input lists are included in the output list, following the traditional bag semantics where duplicate values are retained. Additionally, an optional parameter called equationCriteria can be defined to customize the way equality is determined during the merging process.