Iterator pointing to the beginning element.
Iterator pointing to the super end like c++.
Removes element by iterator and move iter
to next.
container.eraseElementByIterator(container.begin());
The iterator you want to erase.
An iterator pointing to the element if found, or super end if not found.
The element you want to find.
Iterate over all elements in the container.
Callback function like Array.forEach.
Iterator pointing to the end element.
Iterator pointing to the super begin like c++.
Generated using TypeDoc
Description
Using for
for...of
syntax like Array.