[#boost-urls-segments_encoded_ref-operator_assign-02c] = xref:boost/urls/segments_encoded_ref/operator_assign-02c.adoc[boost::urls::segments_encoded_ref::operator=] :relfileprefix: ../../../ :mrdocs: Assignment == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/segments_encoded_ref.hpp#L160[boost/url/segments_encoded_ref.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_encoded_ref.adoc[segments_encoded_ref]& operator=(xref:boost/urls/segments_encoded_ref.adoc[segments_encoded_ref] const& other); ---- == Description The existing contents are replaced by a copy of the other segments. All iterators are invalidated. [NOTE] None of the character buffers referenced by `other` may overlap the buffer of the underlying url, or else the behavior is undefined. == Effects [,cpp] ---- this->assign( other.begin(), other.end() ); ---- == Complexity Linear in `other.buffer().size()`. == Exception Safety Strong guarantee. Calls to allocate may throw. == Return Value A reference to this object. == Parameters [cols=2] |=== | Name | Description | *other* | The segments to assign. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#