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_ref::erase (2 of 3 overloads)

Erase elements.

Synopsis
iterator
erase(
    iterator first,
    iterator last);
Description

This function removes a range of elements 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

An iterator to one past the removed range.

Parameters

Name

Description

first, last

The range of elements to erase.


PrevUpHomeNext