Insert params
<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...
| Name | Thrown on |
|---|---|
system_error |
init contains an invalid percent-encoding. |
before if init.size() == 0.before if first == last.| 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. |