[#boost-urls-pct_string_view-operator_assign] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/pct_string_view.adoc[pct_string_view]::operator= :relfileprefix: ../../../ :mrdocs: Assignment == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/pct_string_view.hpp#L254[boost/url/pct_string_view.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:boost/urls/pct_string_view.adoc[pct_string_view]& operator=(xref:boost/urls/pct_string_view.adoc[pct_string_view] const& other) = default; ---- == Description The copy references the same underlying character buffer. Ownership is not transferred. == Postconditions [,cpp] ---- this->data() == other.data() ---- == Complexity Constant. == Exception Safety Throws nothing. == Return Value A reference to this object. == Parameters [cols=2] |=== | Name | Description | *other* | The string to copy. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#