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
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
insertInsert several elements after the specified position.
The position you want to insert.
The element you want to insert.
Optional
num: numberThe number of elements you want to insert (default 1).
Abstract
popAbstract
pushAbstract
rIterator pointing to the end element.
Abstract
rIterator pointing to the super begin like c++.
Abstract
reverseAbstract
setAbstract
sortAbstract
uniqueGenerated using TypeDoc
Description
Using for
for...of
syntax like Array.