boost::urls::params_encoded_ref::assign

Assign params

Synopses

Declared in <boost/url/params_encoded_ref.hpp>

Assign params

void
assign(std::initializer_list<param_pct_view> init);
» more...

Assign params

template<class FwdIt>
void
assign(
    FwdIt first,
    FwdIt last);
» more...

Exceptions

NameThrown on
system_errorinit contains an invalid percent-encoding.

Parameters

NameDescription
initThe list of params to assign.
firstThe first element to assign.
lastOne past the last element to assign.