# Functions
APPEND appends a new item to an array and returns a new array with a given element.
FIRST returns a first element from a given array.
FLATTEN turns an array of arrays into a flat array.
INTERSECTION return the intersection of all arrays specified.
LAST returns the last element of an array.
MINUS return the difference of all arrays specified.
NTH returns the element of an array at a given position.
OUTERSECTION return the values that occur only once across all arrays specified.
POP returns a new array without last element.
POSITION returns a value indicating whether an element is contained in array.
PUSH create a new array with appended value.
No description provided by the author
REMOVE_NTH returns a new array without an element by a given position.
REMOVE_VALUE returns a new array with removed all occurrences of value in a given array.
REMOVE_VALUES returns a new array with removed all occurrences of values in a given array.
SHIFT returns a new array without the first element.
SLICE returns a new sliced array.
SORTED sorts all elements in anyArray.
SORTED_UNIQUE sorts all elements in anyArray.
No description provided by the author
UNION returns the union of all passed arrays.
UNION_DISTINCT returns the union of all passed arrays with unique values.
UNIQUE returns all unique elements from a given array.
UNSHIFT prepends value to a given array.