setBit method

void setBit(
  1. int bit
)

Implementation

void setBit(int bit) {
  _mask |= bit;
}