std::numeric_limits::is_specialized
Da cppreference.com.
< cpp | types | numeric limits
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
static const bool is_specialized |
(fino al c++11) | |
static constexpr bool is_specialized |
(dal C++11) | |
Il valore di std::numeric_limits<T>::is_specialized è true per tutti
T
per i quali esiste una specializzazione di 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.
[modifica] Specializzazioni standard
T
|
valore di 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 |
[modifica] Vedi anche
[statico] |
identifica i tipi interi 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. (pubblico membro statico costante) |
[statico] |
individua le IEC 559/IEEE 754 tipi a virgola mobile 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. (pubblico membro statico costante) |
[statico] |
identifica i tipi esatti 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. (pubblico membro statico costante) |
[statico] |
identifies types that represent a finite set of values (pubblico membro statico costante) |