BitwiseInt extension

Extensions providing bitwise operators ~, on integer expressions.

on

Methods

bitwiseAnd(Expression<int> other) Expression<int>
Returns the bitwise-and operation between this and other.
bitwiseOr(Expression<int> other) Expression<int>
Returns the bitwise-or operation between this and other.

Operators

operator ~() Expression<int>
Flips all bits in this value (turning 0 to 1 and vice-versa) and returns the result.