|
inlineconstexpr |
Returns a logical true if and only if the element value is not denormal.
Defined in Header
Parameters
x
: argument.Return value
The call is_not_denormal(x)
is semantically equivalent to: (eve::abs(x) >= eve::smallestposval(eve::as(x))) || eve::is_eqz(x)
, in particular this is always true for integral types.
Masked Call
The call eve;is_not_denormal[mask](x)
provides a masked version of eve::is_not_denormal
which is equivalent to if_else (mask, is_not_denormal(x), eve::false( eve::as(x)))
.
Example