erase overloads
Declared in <prevector.h>
Removes the element at pos and returns an iterator to the following element.
iterator
erase(iterator pos);
» more...
Removes the elements in the range [first, last) and returns an iterator to the following element.]
iterator
erase(
iterator first,
iterator last);
» more...
| Name | Description |
|---|---|
| pos | Iterator to the element to remove. |
| first | Iterator to the first element to remove. |
| last | Iterator one past the last element to remove. |