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
You are viewing documentation for version v1.2.x. View latest version.
compact takes a list of strings and returns a new list with any empty string elements removed.
> compact(["a", "", "b", "c"]) [ "a", "b", "c", ]
On this page: