mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 19:24:37 -05:00
1.2 KiB
1.2 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| language | setintersection - Functions - Configuration Language | docs-funcs-collection-setintersection | The setintersection function takes multiple sets and produces a single set containing only the elements that all of the given sets have in common. |
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.
In other words, it computes the
intersection of the sets.
setintersection(sets...)
Examples
> 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.
Related Functions
containstests whether a given list or set contains a given element value.setproductcomputes the Cartesian product of multiple sets.setsubtractcomputes the relative complement of two setssetunioncomputes the union of multiple sets.