mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 03:07:51 -05:00
21 lines
288 B
Plaintext
21 lines
288 B
Plaintext
---
|
|
sidebar_label: concat
|
|
description: The concat function combines two or more lists into a single list.
|
|
---
|
|
|
|
# `concat` Function
|
|
|
|
`concat` takes two or more lists and combines them into a single list.
|
|
|
|
## Examples
|
|
|
|
```
|
|
> concat(["a", ""], ["b", "c"])
|
|
[
|
|
"a",
|
|
"",
|
|
"b",
|
|
"c",
|
|
]
|
|
```
|