:relfileprefix: ../../../ [#boost-urls-url-operator_assign-09] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/url.adoc[pass:[url]]::operator= Assignment == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/url.adoc[url]& operator=(xref:boost/urls/url.adoc[url]&& u) noexcept; ---- == Description The contents of `u` are transferred to `this`, including the underlying character buffer. The previous contents of `this` are destroyed. After assignment, the moved-from object is as if default constructed. === Postconditions [,cpp] ---- u.empty() == true ---- === Complexity Constant. === Exception Safety Throws nothing. == Parameters |=== | Name | Description | *u* | The url to assign from. |===