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