flip method

void flip(
  1. int i
)

Flips bit i.

@param i bit to set

Implementation

void flip(int i) {
  _bits[i ~/ 32] ^= 1 << (i & 0x1F);
}