Back to Packer

`setintersection` Function

website/content/docs/templates/hcl_templates/functions/collection/setintersection.mdx

1.15.31.5 KB
Original Source

⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️

[!IMPORTANT]
Documentation Update: Product documentation previously located in /website has moved to the hashicorp/web-unified-docs repository, where all product documentation is now centralized. Please make contributions directly to web-unified-docs, since changes to /website in this repository will not appear on developer.hashicorp.com. ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️

setintersection Function

The setintersection function takes multiple sets and produces a single set containing only the elements that all of the given sets have in common. The new set is referred to as the intersection.

hcl
setintersection(sets...)

Examples

shell-session
> setintersection(["a", "b"], ["b", "c"], ["b", "d"])
[
  "b",
]

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.
  • setproduct computes the Cartesian product of multiple sets.
  • setunion computes the union of multiple sets.