:relfileprefix: ../../../ [#8AD2E069E1E6A415542DD6A1EDD8A522CDFCC6B0] = Function params_encoded_ref::append pass:v,q[Append params] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- template xref:boost/urls/params_encoded_base.adoc[params_encoded_base]::xref:boost/urls/params_encoded_base/iterator.adoc[iterator] append( FwdIt first, FwdIt last); ---- == Description pass:v,q[This function appends a range of params] pass:v,q[to the view.] pass:v,q[The `end()` iterator is invalidated.] [NOTE] pass:v,q[The strings referenced by the inputs] pass:v,q[must not come from the underlying url,] pass:v,q[or else the behavior is undefined.] === Mandates [,cpp] ---- std::is_convertible< std::iterator_traits< FwdIt >::reference_type, param_pct_view >::value == true ---- === Complexity pass:v,q[Linear in `this->url().encoded_query().size()`.] === Exception Safety pass:v,q[Strong guarantee.] pass:v,q[Calls to allocate may throw.] pass:v,q[Exceptions thrown on invalid input.] == Return Value * `iterator` == Parameters |=== | Name | Type | *first* | `FwdIt` | *last* | `FwdIt` |===