reset method

void reset(
  1. int index
)

Sets the bit at index to false.

Implementation

void reset(int index) {
  set(index, false);
}