Boost.URL Logo

PrevUpHomeNext
params_encoded::assign (2 of 2 overloads)

Assignment from iterators.

Synopsis
template<
    class FwdIt>
void
assign(
    FwdIt first,
    FwdIt last);
Description

The query parameters are replaced by the contents of the range. The behavior is undefined if the elements belong to the container.

Complexity

Linear in the size of the input range.

Exception Safety

Strong guarantee. Calls to allocate may throw.

Parameters

Name

Description

first

Iterator to first query parameter

last

Iterator to one past the last query parameter


PrevUpHomeNext