Generic typed wrapper around Haxe list objects (BodyList, ShapeList, etc.).
Provides a modern iterable interface with for...of, length, at(), etc.
for...of
length
at()
Whether the list is empty.
Number of elements in the list.
Iterate over all elements.
Add an element to the list.
Get element at index.
Remove all elements.
Apply a function to each element.
Check if the list contains an element.
Pop the last element.
Push an element to the end.
Remove an element from the list.
Shift the first element.
Convert to a plain array.
Returns a string representation of an object.
Unshift an element to the front.
Generic typed wrapper around Haxe list objects (BodyList, ShapeList, etc.).
Provides a modern iterable interface with
for...of,length,at(), etc.