Boost.URL Logo

PrevUpHomeNext
params_encoded::insert (3 of 5 overloads)

Insert elements in container.

Synopsis
template<
    class FwdIt>
iterator
insert(
    iterator before,
    FwdIt first,
    FwdIt last);
Description

This function inserts a range of elements at the specified container position. The behavior is undefined if any elements of the range belong to the container.

Return Value

Iterator pointing to the first inserted element

Parameters

Name

Description

before

Position at which the elements should be inserted

first

Iterator pointing to first element to be inserted

last

Iterator pointing to one past the last element to be inserted


PrevUpHomeNext