[#bsl-pair-0b-operator_assign-0b] = xref:bsl.adoc[bsl]::xref:bsl/pair-0b.adoc[pair]::operator= :relfileprefix: ../../ :mrdocs: Assign to this `pair` the value of the specified `rhs` pair, holding `first` and `second` values of (template parameter) type `PARAM_1` and `PARAM_2` respectively, and return a reference providing modifiable access to this object. This method requires that `T1` be assignable from `PARAM_1` and `T2` be assignable from `PARAM_2`. == Synopsis Declared in `<bslstl_pair.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class PARAM_1, class PARAM_2> constexpr xref:bsl/pair-0b.adoc[pair<T1, T2>]& operator=(xref:bsl/pair-0b.adoc[pair<PARAM_1, PARAM_2>]&& rhs); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#