|
inlineconstexpr |
Returns a logical true if and only if the element is not a finite value.
Defined in Header
Parameters
Return value
For real entries the call is_not_finite(x)
is semantically equivalent to:
For complex entries is_infinite(z)
is semantically equivalent to eve::is_not_finite(real(z)) || eve::is_not_finite(imag(z))
,
Masked Call
The call eve;is_not_finite[mask](x)
provides a masked version of eve::is_not_finite
which is equivalent to if_else (mask, is_not_finite(x), eve::false( eve::as(x)))
.
Example