bitset<N>& operator>>=(const bitset<N>& pos);
The member function replaces each element of the bit sequence stored in *this
with the element pos
positions later in
the sequence. If no such later element exists, the function clears the bit. The function returns *this
.