std::tuple_element<std::pair>
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <utility>
|
||
| template< class T1, class T2 > struct tuple_element<0, std::pair<T1,T2> >; |
(1) | (ya que C + +11) |
| template< class T1, class T2 > struct tuple_element<1, std::pair<T1,T2> >; |
(2) | (ya que 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.
You can help to correct and verify the translation. Click here for instructions.
[editar] Tipos de miembros
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
|
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
|
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| se obtiene el tipo del elemento especificado Original: obtains the type of the specified element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (clase de especialización de plantilla) | |
| 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. (clase de especialización de plantilla) | |
| (C++11) |
obtiene el tamaño de un pair Original: obtains the size of a pair The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (clase de especialización de plantilla) |