You are viewing documentation for pre-release version v1.10.0 (beta). 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: