|
inlineconstexpr |
Returns a logical true if and only if the element value is greater than 0.
Defined in Header
Parameters
x
: argument.Return value
Returns elementwise x > 0
.
Masked Call
The call eve;is_gtz[mask](x)
provides a masked version of eve::is_gtz
which is equivalent to if_else (mask, is_gtz(x), eve::false( eve::as(x)))
.
Example