Helper class which emulates an ArrayList due to dynamic arrays not having a remove function for elements.
Uses an associative array to emulate.
Adds the element to the array at the next position.
Removes the element from the array.
Representation of the ArrayList as an Array. Returns a copy.
See Implementation
Helper class which emulates an ArrayList due to dynamic arrays not having a remove function for elements.
Uses an associative array to emulate.