clearBit method

void clearBit(
  1. int index
)

Sets the bit specified by the index to false.

Implementation

void clearBit(int index) {
  _data[index >> 5] &= _clearMask[index & 0x1f];
}