std::common_type (3) - Linux Manuals
std::common_type: std::common_type
NAME
std::common_type - std::common_type
Synopsis
Defined in header <type_traits>
template< class... T > (since C++11)
struct common_type;
Determines the common type among all types T..., that is the type all T... can be implicitly converted to. If such a type exists (as determined according to the rules below), the member type names that type. Otherwise, there is no member type.
* If sizeof...(T) is zero, there is no member type.
* If sizeof...(T) is one (i.e., T... contains only one type T0), the member type names the same type as std::common_type<T0, T0>::type if it exists; otherwise there is no member type.
* If sizeof...(T) is two (i.e., T... contains exactly two types T1 and T2),
* If sizeof...(T) is greater than two (i.e., T... consists of the types T1, T2, R...), then if std::common_type<T1, T2>::type exists, the member type denotes std::common_type<std::common_type<T1, T2>::type, R...>::type if such a type exists. In all other cases, there is no member type.
The types in the parameter pack T shall each be a complete type, (possibly cv-qualified) void, or an array of unknown bound. Otherwise, the behavior is undefined.
If an instantiation of a template above depends, directly or indirectly, on an incomplete type, and that instantiation could yield a different result if that type were hypothetically completed, the behavior is undefined.
Member types
Name Definition
type the common type for all T...
Helper types
template< class... T > (since C++14)
using common_type_t = typename common_type<T...>::type;
Specializations
Users may specialize common_type for types T1 and T2 if
* At least one of T1 and T2 depends on a user-defined type, and
* std::decay is an identity transformation for both T1 and T2.
If such a specialization has a member named type, it must be a public and unambiguous member type that names a cv-unqualified non-reference type to which both T1 and T2 are explicitly convertible. Additionally, std::common_type<T1, T2>::type and std::common_type<T2, T1>::type must denote the same type.
A program that adds common_type specializations in violation of these rules has undefined behavior.
Note that the behavior of a program that adds a specialization to any other template from <type_traits> is undefined.
The following specializations are already provided by the standard library:
std::common_type<std::chrono::duration> (class template specialization)
std::common_type<std::chrono::time_point> (class template specialization)
Possible implementation
Notes
For arithmetic types not subject to promotion, the common type may be viewed as the type of the (possibly mixed-mode) arithmetic expression such as T0() + T1() + ... + Tn().
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR Applied to Behavior as published Correct behavior
LWG_2141 C++11 common_type<int, int>::type is int&& decayed result type
LWG_2408 C++11 common_type is not SFINAE-friendly made SFINAE-friendly
LWG_2460 C++11 common_type specializations are nearly impossible to write reduced number of specializations needed
Examples
Demonstrates mixed-mode arithmetic on a user-defined class
// Run this code