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

This is the documentation for a snapshot of the master branch, built from commit 579430ad1f.
PrevUpHomeNext
params_encoded_ref::erase (1 of 3 overloads)

Erase params.

Synopsis
iterator
erase(
    iterator pos);
Description

This function removes an element from the container.

All iterators that are equal to pos or come after are invalidated.

Example
url u( "?first=John&last=Doe" );

params_encoded_ref::iterator it = u.encoded_params().erase( u.encoded_params().begin() );

assert( u.encoded_query() == "last=Doe" );
Complexity

Linear in this->url().encoded_query().size().

Exception Safety

Throws nothing.

Return Value

An iterator to one past the removed element.

Parameters

Name

Description

pos

An iterator to the element.


PrevUpHomeNext