:relfileprefix: ../../../ [#boost-urls-params_view-operator_assign] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/params_view.adoc[pass:[params_view]]::operator= Assignment == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/params_view.adoc[params_view]& operator=(xref:boost/urls/params_view.adoc[params_view] const&) = default; ---- == Description After assignment, both views reference the same underlying character buffer. Ownership is not transferred; the caller is responsible for ensuring the lifetime of the buffer extends until it is no longer referenced. === Postconditions [,cpp] ---- this->buffer().data() == other.buffer().data() ---- === Complexity Constant === Exception Safety Throws nothing