Espacios de nombres
Variantes
Acciones

std::numeric_limits::is_iec559

De cppreference.com
 
 
Biblioteca de servicios
 
Apoyo de tipos
Propiedades de tipos
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)(hasta C++20)
(C++11)(en desuso en C++20)
(C++11)
Constantes de rasgos de tipos
Metafunciones
(C++17)
Contexto de evaluación constante
Operaciones soportadas
Relaciones y consultas de propiedades
Modificaciones de tipos
Transformaciones de tipos
(C++11)
(C++11)
(C++17)
(C++11)(hasta C++20)(C++17)
 
 
staticconstbool is_iec559;
(hasta C++11)
staticconstexprbool is_iec559;
(desde C++11)

El valor de std::numeric_limits<T>::is_iec559 es true para todos los tipos de punto flotante T que cumplan los requisitos de la norma IEC 559 (IEEE 754) estándar. Si std::numeric_limits<T>::is_iec559 es true, entonces std::numeric_limits<T>::has_infinity, std::numeric_limits<T>::has_quiet_NaN, y std::numeric_limits<T>::has_signaling_NaN son también true.

[editar]Especializaciones estándar

T valor de std::numeric_limits<T>::is_iec559
/* sin especializar */ false
boolfalse
charfalse
signedcharfalse
unsignedcharfalse
wchar_tfalse
char16_tfalse
char32_tfalse
shortfalse
unsignedshortfalse
intfalse
unsignedintfalse
longfalse
unsignedlongfalse
longlongfalse
unsignedlonglongfalse
float por lo general true
double por lo general true
longdouble por lo general true

[editar]Véase también

[estático]
identifica tipos de punto flotante que puede representar el valor especial "infinito positivo"
Original:
identifies floating-point types that can represent the special value "positive infinity"
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)[editar]
[estático]
identifica tipos de punto flotante que puede representar el valor especial "tranquilo, no un número" (NaN)
Original:
identifies floating-point types that can represent the special value "quiet not-a-number" (NaN)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)[editar]
identifica tipos de punto flotante que puede representar el valor especial "señalización no un número" (NaN)
Original:
identifies floating-point types that can represent the special value "signaling not-a-number" (NaN)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante miembro pública estática)[editar]
close