boost::urls::params_encoded_ref::erase

Erase params

Synopsis

Declared in <boost/url/params_encoded_ref.hpp>
iterator
erase(
    iterator first,
    iterator last) noexcept;


Description

This function removes a range of params from the container.

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

Complexity

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

Exception Safety

Throws nothing.

Return Value

Parameters

Name Description
first The first element to remove.
last One past the last element to remove.

Created with MrDocs