You are viewing documentation for version v1.6.x. View latest version.
concat takes two or more lists and combines them into a single list.
concat
> concat(["a", ""], ["b", "c"]) [ "a", "", "b", "c", ]
On this page: