Boost.URL Logo

PrevUpHomeNext
params_encoded::replace (2 of 5 overloads)

Replace container elements.

Synopsis
template<
    class FwdIt>
iterator
replace(
    iterator from,
    iterator to,
    FwdIt first,
    FwdIt last);
Description

This function replaces a range of elements at a range of container positions. The behavior is undefined if any elements of the range belong to the container.

Return Value

Iterator to position where the first inserted element

Parameters

Name

Description

from

Iterator to first element to be replaced

to

Iterator to one past last element to be replaced

first

Iterator to first element to be inserted

last

Iterator to one past last element to be inserted


PrevUpHomeNext