std::common_type<tuple-like>

From cppreference.com
< cpp‎ | utility‎ | tuple
Utilities library
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

Given

the following constraints need to be satisfied:

Member types

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

Example

See also

(C++11)
determines the common type of a group of types
(class template)
determines the common type of two pairs
(class template specialization)