std::numeric_limits::is_bounded - cppreference.com
Da cppreference.com.
|
|
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. |
<metanoindex/>
<tbody> </tbody>
|
|
(fino al c++11) | |
|
|
(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.
Specializzazioni standard
T
|
valore di Original: value of The text has been machine-translated via Google Translate. |
| /* 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
|
Vedi anche
[statico] |
identifica i tipi interi Original: identifies integer types The text has been machine-translated via Google Translate. (pubblico membro statico costante) [modifica] |
[statico] |
identifica i tipi di firma Original: identifies signed types The text has been machine-translated via Google Translate. (pubblico membro statico costante) [modifica] |
[statico] |
identifica i tipi esatti Original: identifies exact types The text has been machine-translated via Google Translate. (pubblico membro statico costante) [modifica] |