|
inlineconstexpr |
Computes the smallest denormal positive value.
Callable object computing the least denormal positive value.
Defined in Header
Parameters
x
: Type wrapper instance embedding the type of the constant.Return value
The call eve::mindenormal(as<T>())
is semantically equivalent to:
T(1.4013e-45f)
if eve::element_type_t<T> is floatT(4.94066e-324)
if eve::element_type_t<T> is doubleRequired header: #include <eve/module/core.hpp>
Member | Effect |
---|---|
operator() | Computes the mindenormal constant |
Parameters
t
: Type wrapper instance embedding the type of the constant.
Return value
the call eve::mindenormal(as<T>())
is semantically equivalent to:
T(1.4013e-45f)
if eve::element_type_t<T>
is floatT(4.94066e-324)
if eve::element_type_t<T>
is double