Boost.URL Logo

PrevUpHomeNext
params::assign (2 of 2 overloads)

Assignment.

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

The query parameters are replaced by the contents of the range. The key and value strings must not reference the underlying URL buffer, or else the behavior is undefined.

Complexity

Linear in the size of the range.

Exception Safety

Strong guarantee. Calls to allocate may throw.

Parameters

Name

Description

first

An iterator to the beginning of the query parameter range

last

An iterator to the end of the query parameter range


PrevUpHomeNext