std::type_index::operator==,!=,<,<=,>,>=
Aus 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. |
<metanoindex/>
<tbody> </tbody> bool operator==( const type_index& rhs ) const; |
(seit C++11) | |
bool operator!=( const type_index& rhs ) const; |
(seit C++11) | |
bool operator<( const type_index& rhs ) const; |
(seit C++11) | |
bool operator<=( const type_index& rhs ) const; |
(seit C++11) | |
bool operator>( const type_index& rhs ) const; |
(seit C++11) | |
bool operator>=( const type_index& rhs ) const; |
(seit C++11) | |
Vergleicht die zugrunde liegenden std::type_info Objekte.
Original:
Compares the underlying std::type_info objects.
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.
1-2)
Überprüft, ob die zugrunde liegenden std::type_info Objekte auf dieselbe Art beziehen .
Original:
Checks whether the underlying std::type_info objects refer to the same type.
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.
3-6)
Vergleicht die zugrunde liegenden std::type_info Objekte als durch eine Implementierung definiert Bestellung definiert. Der Vergleich von type_info::before geschieht .
Original:
Compares the underlying std::type_info objects as defined by an implementation-defined ordering. The comparison is done by type_info::before.
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.
Parameter
| rhs | - | anderen
type_index Objekt zu vergleichenOriginal: another type_index object to compare toThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
1)
true wenn die zugrunde liegenden std::type_info Objekte verweisen auf des selben Typs, false anders angegebenOriginal:
true if the underlying std::type_info objects refer to the same type, false otherwiseThe 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.
2)
true wenn die zugrundeliegenden std::type_info Objekte nicht auf den gleichen Typ, false anders angegebenOriginal:
true if the underlying std::type_info objects refer not to the same type, false otherwiseThe 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.
3-6)
true wenn die Art durch die zugrunde std::type_info genannten Gegenstände durch entsprechende Reihenfolge geordnet sind, ansonsten false .Original:
true if the types referred by the underlying std::type_info objects are ordered by corresponding order, false otherwise.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.