[#boost-urls-segments_ref-operator_assign] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/segments_ref.adoc[segments_ref]::operator= :relfileprefix: ../../../ :mrdocs: Assignment == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/segments_ref.hpp#L156[boost/url/segments_ref.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_ref.adoc[segments_ref]& xref:boost/urls/segments_ref/operator_assign-0d.adoc[operator=](xref:boost/urls/segments_ref.adoc[segments_ref] const& other); ---- [.small]#xref:boost/urls/segments_ref/operator_assign-0d.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_ref.adoc[segments_ref]& xref:boost/urls/segments_ref/operator_assign-08.adoc[operator=](xref:boost/urls/segments_view.adoc[segments_view] const& other); ---- [.small]#xref:boost/urls/segments_ref/operator_assign-08.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/segments_ref.adoc[segments_ref]& xref:boost/urls/segments_ref/operator_assign-0f.adoc[operator=](std::initializer_list<core::string_view> init); ---- [.small]#xref:boost/urls/segments_ref/operator_assign-0f.adoc[_» more..._]# == 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. == Parameters |=== | Name | Description | *other* | The segments to assign. | *init* | The list of segments to assign. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#