operator ~ method

  1. @nonVirtual
T operator ~()

Bitwise NOT operator.

Implementation

@nonVirtual
T operator ~() {
  return _wrapSignAware(~value);
}