<boost/url/params_ref.hpp>
iterator
replace(
iterator pos,
param_view const& p);
» more...
Replace elements
iterator
replace(
iterator from,
iterator to,
std::initializer_list<param_view> init);
» more...
Replace elements
template<class FwdIt>
iterator
replace(
iterator from,
iterator to,
FwdIt first,
FwdIt last);
» more...
to
if init.size() == 0
.to
if first == last
.to
if first == last
.Name | Description |
---|---|
pos | An iterator to the element. |
p | The param to assign. |
from,to | The range of elements to replace. |
init | The list of params to assign. |
from | The first element to replace. |
to | One past the last element to replace. |
first | The first element to insert. |
last | One past the last element to insert. |