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.
distinct takes a list and returns a new list with any duplicate elements removed.
The first occurrence of each value is retained and the relative ordering of these elements is preserved.
> distinct(["a", "b", "a", "c", "d", "b"]) [ "a", "b", "c", "d", ]
On this page: