std::numeric_limits::is_bounded
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. |
staticconstbool is_bounded | (fino al c++11) | |
staticconstexprbool is_bounded | (dal C++11) | |
Il valore di std::numeric_limits<T>::is_bounded è true per tutti i tipi aritmetici
T
che rappresentano un insieme finito di valori. Mentre tutti i tipi fondamentali sono limitati, questa costante sarebbe false in una specializzazione di std::numeric_limits per una libreria fornita tipo arbitrario precisione aritmetica Original:
The value of std::numeric_limits<T>::is_bounded is true for all arithmetic types
T
that represent a finite set of values. While all fundamental types are bounded, this constant would be false in a specialization of std::numeric_limits for a library-provided arbitrary precision arithmetic 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.
[modifica]Specializzazioni standard
T | valore di std::numeric_limits<T>::is_bounded Original: value of std::numeric_limits<T>::is_bounded 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 |
signedchar | true |
unsignedchar | true |
wchar_t | true |
char16_t | true |
char32_t | true |
short | true |
unsignedshort | true |
int | true |
unsignedint | true |
long | true |
unsignedlong | true |
longlong | true |
unsignedlonglong | true |
float | true |
double | true |
longdouble | 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] | identifica i tipi di firma Original: identifies signed 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) |