setBit method
Sets the bit specified by the index
to true.
Implementation
void setBit(int index) {
_data[index >> 5] |= _bitMask(index);
}
Sets the bit specified by the index
to true.
void setBit(int index) {
_data[index >> 5] |= _bitMask(index);
}