bitOff method

void bitOff(
  1. int bit
)

Turns off a bit.

Implementation

void bitOff(int bit) => sum &= ~bit;