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
|
|
定義済みヘッダー
<limits>
|
||
|
enum
float_denorm_style
{
denorm_indeterminate
=
-
1
,
|
(C++23で非推奨) | |
std::float_denorm_style
型の列挙定数は、浮動小数点型によるサブノーマル値のサポートを示します。
列挙定数
| 列挙子 | 意味 |
std::denorm_indeterminate
|
非正規化数のサポートが判定不能 |
std::denorm_absent
|
当該型は非正規化数をサポートしない |
std::denorm_present
|
当該型は非正規化数を許容する |
関連項目
|
[static]
|
浮動小数点型で使用される非正規化スタイルを識別する
(public static member constant) |