static T denorm_min() throw();
(until C++11)static constexpr T denorm_min() noexcept;
(since C++11)Returns the minimum positive subnormal value of the type T
, if std::numeric_limits<T>::has_denorm != std::denorm_absent, otherwise returns std::numeric_limits<T>::min() for floating point types and T() for all other types. Only meaningful for floating-point types.
T
std::numeric_limits<T>::denorm_min() /* non-specialized */ T() bool false char â0â signed char â0â unsigned char â0â wchar_t â0â char8_t (since C++20) â0â char16_t (since C++11) â0â char32_t (since C++11) â0â short â0â unsigned short â0â int â0â unsigned int â0â long â0â unsigned long â0â long long (since C++11) â0â unsigned long long since (since C++11) â0â float FLT_TRUE_MIN (\(\scriptsize 2^{-149}\)2-149Demonstates the underlying bit structure of the denorm_min()
and prints the values:
Possible output:
float min() denorm_min() 1.17549e-38 1.4013e-45 double min() denorm_min() 2.22507e-308 4.94066e-324[edit] See also returns the smallest finite value of the given non-floating-point type, or the smallest positive normal value of the given floating-point type
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4