boost::urls::params_ref::erase
Erase elements
Synopsis
Declared in <boost/url/params_ref.hpp>
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_ref::iterator it = u.params().erase( u.params().begin() );
assert( u.encoded_query() == "last=Doe" );
Parameters
Name |
Description |
pos |
An iterator to the element. |
Created with MrDocs