Boost.URL Logo

PrevUpHomeNext
params::insert (3 of 5 overloads)

Insert elements.

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 key and value strings must not reference the underlying URL buffer, or else the behavior is undefined.

Return Value

Iterator pointing to the first inserted element

Parameters

Name

Description

before

Position at which the elements should be inserted

first

An iterator to the beginning of the query parameter range

last

An iterator to the end of the query parameter range


PrevUpHomeNext