tmp/tmpju79acl1/{from.md → to.md}
RENAMED
|
@@ -1,20 +0,0 @@
|
|
| 1 |
-
#### Type `float_denorm_style` <a id="denorm.style">[[denorm.style]]</a>
|
| 2 |
-
|
| 3 |
-
``` cpp
|
| 4 |
-
namespace std {
|
| 5 |
-
enum float_denorm_style {
|
| 6 |
-
denorm_indeterminate = -1,
|
| 7 |
-
denorm_absent = 0,
|
| 8 |
-
denorm_present = 1
|
| 9 |
-
};
|
| 10 |
-
}
|
| 11 |
-
```
|
| 12 |
-
|
| 13 |
-
The presence or absence of subnormal numbers (variable number of
|
| 14 |
-
exponent bits) is characterized by the values:
|
| 15 |
-
|
| 16 |
-
- `denorm_indeterminate` if it cannot be determined whether or not the
|
| 17 |
-
type allows subnormal values
|
| 18 |
-
- `denorm_absent` if the type does not allow subnormal values
|
| 19 |
-
- `denorm_present` if the type does allow subnormal values
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|