Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Erase elements.
iterator erase( iterator pos);
This function removes an element from the container.
All iterators that are equal to pos
or come after are invalidated.
url u( "?first=John&last=Doe" ); params_ref::iterator it = u.params().erase( u.params().begin() ); assert( u.encoded_query() == "last=Doe" );
Linear in this->url().encoded_query().size().
Throws nothing.
An iterator to one past the removed element.
|
Name |
Description |
|---|---|
|
|
An iterator to the element. |