Lists
Within spells, it is possible to create lists of an arbitrary amount of fragments merged into a single value.
Lists are zero indexed.

Creates a new empty list.

Returns the amount of elements in the given list.

Appends one or many elements to the end of the given list.

Creates a new list containing the elements of all given lists.

Returns a list containing the elements of the given list with indexes starting at the first number and ending before the second.

Returns the given list, reversed.

Inserts one or many elements at a specific position in the given list.

Finds and returns an element from the given list based on index.

Finds and returns the index of a specific element in the given list, or void if the element is not in the list.

Removes one or many elements from the given list by their index. Indexes do not move around mid-removal.

Removes one or many elements from the given list by checking their equality with the set of given fragments.

Returns a list containing the range of integer numbers starting at the first given number and ending before the second.