operator ~ method

Expression<int> operator ~()

Flips all bits in this value (turning 0 to 1 and vice-versa) and returns the result.

Implementation

Expression<int> operator ~() {
  return _BitwiseNegation(this);
}