Abstract Abstract [iterator]Abstract backAbstract beginIterator pointing to the beginning element.
Abstract clearAbstract endIterator pointing to the super end like c++.
Abstract eraseRemoves element by iterator and move iter to next.
container.eraseElementByIterator(container.begin());
The iterator you want to erase.
Abstract eraseAbstract findAn iterator pointing to the element if found, or super end if not found.
The element you want to find.
Abstract forIterate over all elements in the container.
Callback function like Array.forEach.
Abstract frontAbstract getAbstract rIterator pointing to the end element.
Abstract rIterator pointing to the super begin like c++.
Generated using TypeDoc
Description
Using for
for...ofsyntax like Array.