unsetBit method

void unsetBit(
  1. int bit
)

Implementation

void unsetBit(int bit) {
  _mask ^= bit;
}