set method

void set(
  1. int i
)

Sets bit i.

@param i bit to set

Implementation

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