An iterator of the List's elements.
Retrieves the element at index index.
Supports relative indexing from the end of the list using negative integers
(e.g., -1 returns the last element).
The zero-based index of the element to retrieve.
The element at index index, or undefined if index is out of bounds.
Pops the last element off the List and returns it.
The last element in the List.
Sets multiple elements starting at index to the values in elements.
An array of values to write into the List.
The index to start writing the values to.
Returns the number of elements in the List.
The count of elements contained in the list.
Creates an iterator over the List's elements.
An iterator of the List's elements.
A container that stores and retrieves values by index.
The Serializable equivalent of a vanilla JavaScript
Array.