std:: float_denorm_style
From cppreference.net
<
cpp
|
types
|
numeric limits
C++
Utilities library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Type support
| Basic types | |||||||||||||||||||||
| Fixed width integer types (C++11) | |||||||||||||||||||||
| Fixed width floating-point types (C++23) | |||||||||||||||||||||
|
|||||||||||||||||||||
| Numeric limits | |||||||||||||||||||||
| C numeric limits interface | |||||||||||||||||||||
| Runtime type information | |||||||||||||||||||||
|
|||||||||||||||||||||
std::numeric_limits
| Static constants | ||||
|
(C++11)
|
||||
| Static member functions | ||||
|
(C++11)
|
||||
| Helper types | ||||
|
float_denorm_style
|
|
Definiert in Header
<limits>
|
||
|
enum
float_denorm_style
{
denorm_indeterminate
=
-
1
,
|
(veraltet in C++23) | |
Aufzählungskonstanten vom Typ
std::float_denorm_style
geben die Unterstützung von subnormalen Werten durch Gleitkommatypen an.
Aufzählungskonstanten
| Enumerator | Bedeutung |
std::denorm_indeterminate
|
Unterstützung von subnormalen Werten kann nicht bestimmt werden |
std::denorm_absent
|
der Typ unterstützt keine subnormalen Werte |
std::denorm_present
|
der Typ erlaubt subnormale Werte |
Siehe auch
|
[static]
|
identifiziert den Denormalisierungsstil, der vom Gleitkommatyp verwendet wird
(öffentliche statische Member-Konstante) |