boost::urls::params_encoded_ref::append

Append params

Synopses

Declared in <boost/url/params_encoded_ref.hpp>

Append params

iterator
append(std::initializer_list<param_pct_view> init);
» more...

Append params

iterator
append(param_pct_view const& p);
» more...

Append params

template<class FwdIt>
iterator
append(
    FwdIt first,
    FwdIt last);
» more...

Exceptions

NameThrown on
system_errorinit contains an invalid percent-encoding.

Return Value

  • An iterator to the first new element.
  • An iterator to the new element.

Parameters

NameDescription
initThe list of params to append.
pThe param to append.
firstThe first element to append.
lastOne past the last element to append.