|
inlineconstexpr |
computes the ones complement of the parameter.
Defined in Header
Parameters
x : argument.Return value
The value of the bitwise NOT of the parameter is returned.
Masked Call
The call eve::bit_not[mask](x, ...) provides a masked version of bit_not which is equivalent to if_else(mask, bit_not(x, ...), x)
Example