[#bsl-pair-0b-2constructor-01] = xref:bsl.adoc[bsl]::xref:bsl/pair-0b.adoc[pair]::pair :relfileprefix: ../../ :mrdocs: Construct a `pair` from the specified `other` rvalue pair, holding `first` and `second` values of (template parameter) type `PARAM_1` and `PARAM_2` respectively. This method requires that `T1` and `T2` be convertible from `PARAM_1` and `PARAM_2`, respectively. == Synopsis Declared in `<bslstl_pair.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class PARAM_1, class PARAM_2, class = void> requires bsl::is_convertible<PARAM_1, T1>::value && bsl::is_convertible<PARAM_2, T2>::value constexpr pair(xref:bsl/pair-0b.adoc[pair<PARAM_1, PARAM_2>]&& other); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#