Namespaces
Variants
Views
Actions

std::common_type<tuple-like>

From cppreference.com
< cpp‎ | utility‎ | tuple
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
Defined in header <tuple>
template< tuple-like TTuple, tuple-like UTuple >

    requires /* see below */

struct common_type<TTuple, UTuple>;
(since C++23)

The common type of two tuple-like types is a std::tuple consists of the common types of all corresponding element type pairs of both types.

Given

the following constraints need to be satisfied:

[edit] Member types

Member type Definition
type std::tuple<std::common_type_t<TTypes, UTypes>...>

[edit] Example

[edit] See also

determines the common type of a group of types
(class template) [edit]
determines the common type of two pairs
(class template specialization) [edit]