std::float_denorm_style
Min standard notice:
Header: <limits>
Enumeration constants of type std::float_denorm_style indicate support of subnormal values by floating-point types.
# Declarations
enum float_denorm_style {
denorm_indeterminate = -1,
denorm_absent = 0,
denorm_present = 1
};
(deprecated in C++23)