:relfileprefix: ../../../ [#33925500CEFE4534D24B6AC04A7B08E44513DE71] = Function params_ref::operator= pass:v,q[Assignment] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/params_ref.adoc[params_ref]& operator=(initializer_list init); ---- == Description pass:v,q[After assignment, the previous contents] pass:v,q[of the query parameters are replaced by] pass:v,q[the contents of the initializer-list.] === Preconditions pass:v,q[None of character buffers referenced by] pass:v,q[`init` may overlap the character buffer of] pass:v,q[the underlying url, or else the behavior] pass:v,q[is undefined.] === Effects [,cpp] ---- this->assign( init ); ---- === Complexity pass:v,q[Linear in `init.size()`.] === Exception Safety pass:v,q[Strong guarantee.] pass:v,q[Calls to allocate may throw.] == Return Value * `` == Parameters |=== | Name | Type | *init* | `initializer_list` |===