A linked-list of elements. The list is composed of element container objects that are chained together. It is optimized so that adding or removing an element does not imply copying the whole list content every time.
See:
Constructor
Variables
Methods
Empties this List.
This function does not traverse the elements, but simply sets the
internal references to null and this.length to 0.
Returns the first element of this List, or null if no elements exist.
This function does not modify this List.