Espacios de nombres
Variantes
Acciones

std::tuple_element<std::pair>

De cppreference.com
 
 
Biblioteca de servicios
 
std::pair
Funciones miembro
Funciones no miembro
(hasta C++20)(hasta C++20)(hasta C++20)(hasta C++20)(hasta C++20)(C++20)
(C++11)
Guías de deducción(C++17)
Clases auxiliares
(C++11)
tuple_element
(C++11)
 
Definido en el archivo de encabezado <utility>
template< class T1, class T2 >
struct tuple_element<0, std::pair<T1,T2> >;
(1) (desde C++11)
template< class T1, class T2 >
struct tuple_element<1, std::pair<T1,T2> >;
(2) (desde C++11)
Las especializaciones parciales de std::tuple_element para pares de proporcionar una manera en tiempo de compilación para obtener los tipos de elementos de la pareja, el uso tuple-como sintaxis .
Original:
The partial specializations of std::tuple_element for pairs provide a compile-time way to obtain the types of the pair's elements, using tuple-like syntax.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

Tipos de miembros

Primera versión
Original:
First version
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Miembro de tipo
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
type T1
Segunda versión
Original:
Second version
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Miembro de tipo
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
type T2

Ejemplo

Ver también

Obtiene el tipo del elemento especificado.
(especialización de plantilla de clase) [editar]
se obtiene el tipo de los elementos de array
Original:
obtains the type of the elements of array
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(especialización de plantilla de clase) [editar]
Obtiene el tamaño de un par.
(especialización de plantilla de clase) [editar]