difference method

void difference(
  1. BitList other
)

Computes the difference of the receiver and other in-place.

Implementation

void difference(BitList other) {
  _checkLength(other);
  for (var i = 0; i < buffer.length; i++) {
    buffer[i] &= ~other.buffer[i];
  }
}