alltrue
anytrue
chunklist
coalesce
coalescelist
compact
concat
contains
distinct
element
flatten
index
keys
length
list
lookup
map
matchkeys
merge
one
range
reverse
setintersection
setproduct
setsubtract
setunion
slice
sort
sum
transpose
values
zipmap
concat takes two or more lists and combines them into a single list.
> concat(["a", ""], ["b", "c"]) [ "a", "", "b", "c", ]
On this page: