Erase elements from this vector.
Declared in <bslstl_vector.h>
Erase elements from this vector.
vector<VALUE_TYPE, ALLOCATOR>::iterator
erase(const_iterator position);
» more...
Erase elements from this vector.
vector<VALUE_TYPE, ALLOCATOR>::iterator
erase(
const_iterator first,
const_iterator last);
» more...
iterator following the last erased element, or end() if none remain
| Name | Description |
|---|---|
| position | element position or insertion point |
| first | beginning of the range (inclusive) |
| last | end of the range (exclusive) |