You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/source/docs/configuration/from-1.5/functions/collection/setunion.html.md

1.1 KiB

layout page_title sidebar_current description
docs setunion - Functions - Configuration Language configuration-functions-collection-setunion The setunion function takes multiple sets and produces a single set containing the elements from all of the given sets.

setunion Function

The setunion function takes multiple sets and produces a single set containing the elements from all of the given sets. In other words, it computes the union of the sets.

setunion(sets...)

Examples

> setunion(["a", "b"], ["b", "c"], ["d"])
[
  "d",
  "b",
  "c",
  "a",
]

The given arguments are converted to sets, so the result is also a set and the ordering of the given elements is not preserved.

  • contains tests whether a given list or set contains a given element value.
  • setintersection computes the intersection of multiple sets.
  • setproduct computes the Cartesian product of multiple sets.