#include <cstddef>#include <cstring>#include <string>#include <bits/functexcept.h>#include <ostream>#include <istream>


Go to the source code of this file.
Namespaces | |
| namespace | std |
Classes | |
| class | std::bitset< Nb > |
| The bitset class represents a fixed-size sequence of bits. More... | |
| class | std::bitset< Nb >::reference |
Functions | |
| template<size_t Nb> | |
| bitset< Nb > | std::operator & (const bitset< Nb > &x, const bitset< Nb > &y) |
| Global bitwise operations on bitsets. | |
| template<size_t Nb> | |
| bitset< Nb > | std::operator| (const bitset< Nb > &x, const bitset< Nb > &y) |
| Global bitwise operations on bitsets. | |
| template<size_t Nb> | |
| bitset< Nb > | std::operator^ (const bitset< Nb > &x, const bitset< Nb > &y) |
| Global bitwise operations on bitsets. | |
| template<class CharT, class Traits, size_t Nb> | |
| basic_istream< CharT, Traits > & | std::operator>> (basic_istream< CharT, Traits > &__is, bitset< Nb > &x) |
| Global I/O operators for bitsets. | |
| template<class CharT, class Traits, size_t Nb> | |
| basic_ostream< CharT, Traits > & | std::operator<< (basic_ostream< CharT, Traits > &__os, const bitset< Nb > &x) |
| Global I/O operators for bitsets. | |
include this header in your programs, rather than any of the "st[dl]_*.h" implementation files.
Definition in file bitset.
1.5.5