clearBit method

void clearBit(
  1. int index
)

Sets the bit specified by the index to false.

Implementation

void clearBit(int index) {
  _data[index >> 5] &= (~_bitMask(index)).toUnsigned(32);
}