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.6.x. View latest version.
sort takes a list of strings and returns a new list with those strings sorted lexicographically.
The sort is in terms of Unicode codepoints, with higher codepoints appearing after lower ones in the result.
> sort(["e", "d", "a", "x"]) [ "a", "d", "e", "x", ]
On this page: