Standard C++ Library Reference ISO/IEC (VERSION3)
bitset::operator!=
bool operator !=(const bitset<Bits>& right) const;
The member operator function returns true only if the bit sequence stored in *this differs from
the one stored in right.
bitset::operator&=
bitset<Bits>& operator&=(const bitset<Bits>& right);
The member operator function replaces each element of the bit sequence stored in *this with
the logical AND of its previous value and the corresponding bit in right. The function returns
*this.
bitset::operator<<
bitset<Bits> operator<<(const bitset<Bits>& pos);
The member operator function returns bitset(*this) <<= pos.
bitset::operator<<=
bitset<Bits>& operator<<=(const bitset<Bits>& pos);
The member operator function replaces each element of the bit sequence stored in *this with
the element pos positions earlier in the sequence. If no such earlier element exists, the function
clears the bit. The function returns *this.
bitset::operator==
bool operator ==(const bitset<Bits>& right) const;
The member operator function returns true only if the bit sequence stored in *this is the same
as the one stored in right.
bitset::operator>>
bitset<Bits> operator>>(const bitset<Bits>& pos);
The member operator function returns bitset(*this) >>= pos.