appendBit method
Implementation
void appendBit(bool bit) {
_ensureCapacity(_size + 1);
if (bit) {
_bits[_size ~/ 32] |= 1 << (_size & 0x1F);
}
_size++;
}
void appendBit(bool bit) {
_ensureCapacity(_size + 1);
if (bit) {
_bits[_size ~/ 32] |= 1 << (_size & 0x1F);
}
_size++;
}