appendBitArray method

void appendBitArray(
  1. BitArray other
)

Implementation

void appendBitArray(BitArray other) {
  final otherSize = other._size;
  _ensureCapacity(_size + otherSize);
  for (int i = 0; i < otherSize; i++) {
    appendBit(other.get(i));
  }
}