|
inlineconstexpr |
Returns a logical true if and only if the element value is not zero.
Defined in Header
Parameters
x : argument.Return value
The truth value of x != 0 is returned.
Masked Call
The call eve;is_nez[mask](x) provides a masked version of eve::is_nez which is equivalent to if_else (mask, is_nez(x), eve::false( eve::as(x))).
Example