bool operator[](size_type pos) const;
reference operator(size_type pos);
The member function returns an object of class reference
, which designates the bit at position pos
, if the object can
be modified. Otherwise, it returns the value of the bit at position pos
in the bit sequence. If that position is invalid, the
behavior is undefined.