Erase params
<include/boost/url/params_encoded_ref.hpp>
iterator
erase(iterator pos) noexcept;
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_encoded_ref::iterator it = u.encoded_params().erase( u.encoded_params().begin() );
assert( u.encoded_query() == "last=Doe" );
An iterator to one past the removed element.
Name | Description |
---|---|
pos | An iterator to the element. |