:relfileprefix: ../../../ [#boost-urls-url_view-operator_assign-02] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/url_view.adoc[pass:[url_view]]::operator= Assignment == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/url_view.adoc[url_view]& operator=(xref:boost/urls/url_view.adoc[url_view] const& other) noexcept; ---- == Description After assignment, both views reference the same underlying character buffer. Ownership is not transferred. === Postconditions [,cpp] ---- this->buffer().data() == other.buffer().data() ---- === Complexity Constant. === Exception Safety Throws nothing.