boost::urls::url::operator= boost::urls::url::operator= Assignment Synopsis Declared in <boost/url/url.hpp> url& boost::urls::url::operator=(url&& u) noexcept; » more… url& boost::urls::url::operator=(url_view_base const& u); » more… url& boost::urls::url::operator=(url const& u); » more… 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. u.empty() == true Constant. Throws nothing. Exceptions Name Thrown on `u.size() > max_size()`. Parameters Name Description u The url to assign from. Created with MrDocs