boost::urls::params_encoded_ref::erase

Erase params

Synopsis

Declared in <include/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.

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

Throws nothing.

Return Value

An iterator to one past the removed range.

Parameters

Name Description
first,

last The range of params to erase.

Created with MrDocs