erase overloads
Declared in <bslstl_deque.h>
Erase the element at position from this deque.
deque<VALUE_TYPE, ALLOCATOR>::iterator
erase(const_iterator position);
» more...
Erase the half-open range [first, last)] from this deque.
deque<VALUE_TYPE, ALLOCATOR>::iterator
erase(
const_iterator first,
const_iterator last);
» more...
| Name | Description |
|---|---|
| position | iterator to the element to erase |
| first | iterator to the first element to erase |
| last | iterator past the last element to erase |