396 B
396 B
layout | page_title | sidebar_current | description |
---|---|---|---|
language | concat - Functions - Configuration Language | docs-funcs-collection-concat | 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",
]