|
inlineconstexpr |
Computes the elementwise product of the first parameter by the never zero sign of the second.
Defined in Header
Parameters
x
, y
: arguments.Return value
The elementwise product of the first parameter by the never zero sign of the second is returned.
Masked Call
The call eve::negatenz[mask](x, ...)
provides a masked version of negatenz
which is equivalent to if_else(mask, negatenz(x, ...), x)
Example