not method

void not()

Computes the complement of the receiver in-place.

Implementation

void not() {
  for (var i = 0; i < buffer.length; i++) {
    buffer[i] = ~buffer[i];
  }
}