List
List Operators
range from to
one_two_three = range 1 4
one_two_three = (..) 1 4
one_two_three = 1 .. 4rangei from to
one_two_three = rangei 1 3
one_two_three = (..=) 1 3
one_two_three = 1 ..= 3concat x y
prepend value list
append list value
Query Functions
nth index list
length list
is_empty list
contains value list
index_of value list
Modification Functions
set index value list
head list
tail list
init list
last list
take count list
drop count list
slice start end list
split index list
Transformation Functions
reverse list
unique list
sort list
flatten list
intersperse value list
Reduction Functions
min_of list
max_of list
sum list
product list
Last updated