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>
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(pair<PARAM_1, PARAM_2>&& other);
Created with MrDocs