std::numeric_limits::is_specialized
Aus cppreference.com
< cpp | types | numeric limits
![]() |
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. |
static const bool is_specialized |
(bis C + +11) | |
static constexpr bool is_specialized |
(seit C++11) | |
Der Wert ist std::numeric_limits<T>::is_specialized true für alle
T
für die es eine Spezialisierung der std::numeric_limits .Original:
The value of std::numeric_limits<T>::is_specialized is true for all
T
for which there exists a specialization of std::numeric_limits.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.
[Bearbeiten] Standard Spezialisierungen
T
|
Wert std::numeric_limits<T>::is_specialized
Original: value of std::numeric_limits<T>::is_specialized The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
/* non-specialized */ | false |
bool | true |
char | true |
signed char | true |
unsigned char | true |
wchar_t | true |
char16_t | true |
char32_t | true |
short | true |
unsigned short | true |
int | true |
unsigned int | true |
long | true |
unsigned long | true |
long long | true |
unsigned long long | true |
float | true |
double | true |
long double | true |
[Bearbeiten] Siehe auch
[statisch] |
identifiziert Integer-Typen Original: identifies integer types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Mitglied konstanten) |
[statisch] |
identifiziert die IEC 559/IEEE 754 Floating-Point-Typen Original: identifies the IEC 559/IEEE 754 floating-point types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Mitglied konstanten) |
[statisch] |
identifiziert genauen Typen Original: identifies exact types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Mitglied konstanten) |
[statisch] |
identifies types that represent a finite set of values (public static Mitglied konstanten) |