mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> Signed-off-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Signed-off-by: Roman Grinovski <roman.grinovski@gmail.com> Co-authored-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Co-authored-by: Roman Grinovski <roman.grinovski@gmail.com>
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
---
|
|
sidebar_label: setunion
|
|
description: |-
|
|
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](https://en.wikipedia.org/wiki/Union_\(set_theory\)) of
|
|
the sets.
|
|
|
|
```hcl
|
|
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.
|
|
|
|
## Related Functions
|
|
|
|
* [`contains`](../../language/functions/contains.mdx) tests whether a given list or set contains
|
|
a given element value.
|
|
* [`setintersection`](../../language/functions/setintersection.mdx) computes the _intersection_ of
|
|
multiple sets.
|
|
* [`setproduct`](../../language/functions/setproduct.mdx) computes the _Cartesian product_ of multiple
|
|
sets.
|
|
* [`setsubtract`](../../language/functions/setsubtract.mdx) computes the _relative complement_ of two sets
|