Chunk
Split a list into a list of fixed-size sub-lists.
Concat
Concatenate several input lists into one.
Contains
Test whether a list contains a particular value.
First
Return the first element of a list.
Flatten
Flatten a nested list β turn `[[1,2],[3,[4,5]]]` into `[1,2,3,4,5]`.
Index Of
Return the 0-based position of the first occurrence of a value in a list, or -1 if absent.
Last
Return the last element of a list.
Random item
Returns a random item from an list
Reverse
Reverse the order of elements in a list.
Slice
Return a contiguous sub-list between start (inclusive) and end (exclusive).
Unique
Drop duplicate elements from a list, preserving the first occurrence's position.
Item at index
Returns array item at the specified index