[#boost-urls-param-operator_assign-0cb] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/param.adoc[param]::operator= :relfileprefix: ../../../ :mrdocs: Assignment == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/param.hpp#L303[boost/url/param.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:boost/urls/param.adoc[param]& operator=(xref:boost/urls/param_view.adoc[param_view] const& other); ---- == Description The members of `other` are copied, re‐using already existing string capacity. === Postconditions [,cpp] ---- this->key == other.key && this->value == other.value && this->has_value == other.has_value ---- === Complexity Linear in `other.key.size() + other.value.size()`. === Exception Safety Calls to allocate may throw. == Parameters |=== | Name | Description | *other* | The parameter to copy. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#