Insert params

Synopses

Insert params

iterator
insert(
    iterator before,
    std::initializer_list<param_pct_view> init);

Insert params

iterator
insert(
    iterator before,
    param_pct_view const& p);

Insert params

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

Exceptions

Name

Thrown on

system_error

init contains an invalid percent‐encoding.

Return Value

  • An iterator to the first element inserted, or before if init.size() == 0.

  • An iterator to the inserted element.

  • An iterator to the first element inserted, or before if first == last.

  • An iterator to the first element inserted.

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