erase overloads
Declared in <bslstp_slist.h>
Erase the element at __pos and return the following iterator.
iterator
erase(iterator __pos);
» more...
Erase the elements in the half-open range [__first, __last).]
iterator
erase(
iterator __first,
iterator __last);
» more...
__pos__last| Name | Description |
|---|---|
| __pos | position of the element to erase |
| __first | beginning of the erased range |
| __last | end of the erased range (exclusive) |