boost::urls::params_encoded_ref::insert

Insert params

Synopses

Declared in <boost/url/params_encoded_ref.hpp>
Insert params
iterator
insert(
    iterator before,
    std::initializer_list<param_pct_view> init);


» more... Insert params
iterator
insert(
    iterator before,
    param_pct_view const& p);


» more... Insert params
template<class FwdIt>
iterator
insert(
    iterator before,
    FwdIt first,
    FwdIt last);


» more...

Exceptions

Name Thrown on
system_error init contains an invalid percent-encoding.

Return Value

Parameters

Name Description
before An iterator before which the element is inserted. This may be equal to end().
init The list of params to insert.
p The param to insert.
first The first element to insert.
last One past the last element to insert.

Created with MrDocs