or method

void or(
  1. BitList other
)

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

Implementation

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