mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-30 04:00:12 -05:00
1.1 KiB
1.1 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| language | setsubtract - Functions - Configuration Language | docs-funcs-collection-setsubtract | The setsubtract function returns a new set containing the elements from the first set that are not present in the second set |
setsubtract Function
The setsubtract function returns a new set containing the elements from the first set that are not present in the second set. In other words, it computes the
relative complement of the first set in the second set.
setsubtract(a, b)
Examples
> setsubtract(["a", "b", "c"], ["a", "c"])
[
"b",
]
Set Difference (Symmetric Difference)
> setunion(setsubtract(["a", "b", "c"], ["a", "c", "d"]), setsubtract(["a", "c", "d"], ["a", "b", "c"]))
[
"b",
"d",
]
Related Functions
setintersectioncomputes the intersection of multiple setssetproductcomputes the Cartesian product of multiple sets.setunioncomputes the union of multiple sets.