Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 335 Bytes

File metadata and controls

20 lines (16 loc) · 335 Bytes
page_title description
concat - Functions - Configuration Language
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",
]