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