Namensräume
Varianten
Aktionen

std::tuple_element<std::pair>

Aus cppreference.com
< cpp‎ | utility‎ | pair

 
 
 
std::pair
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
pair::pair
pair::operator=
pair::swap
Non-Member-Funktionen
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
make_pair
operator=
operator!=
operator<
operator<=
operator>
operator>=
std::swap
get(C++11)
Helper-Klassen
Original:
Helper classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
tuple_size(C++11)
tuple_element(C++11)
 
definiert in Header <utility>
template< class T1, class T2 >
struct tuple_element<0, std::pair<T1,T2> >;
(1) (seit C++11)
template< class T1, class T2 >
struct tuple_element<1, std::pair<T1,T2> >;
(2) (seit C++11)
Die partiellen Spezialisierungen std::tuple_element für Paare eine Kompilierung Weg, um die Arten des Paares die Elemente zu erhalten, wobei Tupel-ähnliche Syntax .
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.

Inhaltsverzeichnis

[Bearbeiten] Mitglied Typen

Erste Version
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.
Mitglied Typ
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
Zweite Version
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.
Mitglied Typ
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

[Bearbeiten] Beispiel

[Bearbeiten] Siehe auch

erhält den Typ des angegebenen Elements
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.

(class Template-Spezialisierung) [edit]
ermittelt die Art der Elemente der 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.

(class Template-Spezialisierung) [edit]
erhält die Größe eines 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.

(class Template-Spezialisierung) [edit]