|
inlineconstexpr |
Computes the bitwise ANDNOT of its arguments.
Defined in Header
Parameters
Return value
bit_andnot(a0,
bit_and(xs...))
Masked Call
The call eve::bit_andnot[mask](x, ...)
provides a masked version of bit_andnot
which is equivalent to if_else(mask, bit_andnot(x, ...), x)
Example