Boost.URL Logo

PrevUpHomeNext
params_encoded::replace (3 of 5 overloads)

Replace container elements.

Synopsis
iterator
replace(
    iterator from,
    iterator to,
    std::initializer_list< reference > init);
Description

This function replaces a list of elements at a range of container positions. The behavior is undefined if any elements of the initializer_list 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

init

List of elements to replace the range


PrevUpHomeNext