BitwiseInt extension
Extensions providing bitwise operators ~, on integer expressions.
- on
Methods
-
bitwiseAnd(
Expression< int> other) → Expression<int> -
Returns the bitwise-and operation between
this
andother
. -
bitwiseOr(
Expression< int> other) → Expression<int> -
Returns the bitwise-or operation between
this
andother
.
Operators
-
operator ~(
) → Expression< int> -
Flips all bits in this value (turning
0
to1
and vice-versa) and returns the result.