reset

Sets the bits to false.

  bitset<N>& reset();
  bitset<N>& reset(size_t pos);
  
Remarks

The reset function without any arguments sets all the bits to false. The reset function with an argument sets the bit at that position to false.

Returns the modified bitset.