clearBit method
Sets the bit specified by the index
to false.
Implementation
void clearBit(int index) {
_data[index >> 5] &= (~_bitMask(index)).toUnsigned(32);
}
Sets the bit specified by the index
to false.
void clearBit(int index) {
_data[index >> 5] &= (~_bitMask(index)).toUnsigned(32);
}