libstdc++
|
Classes | |
struct | std::tr2::__dynamic_bitset_base< _WordT, _Alloc > |
class | std::tr2::dynamic_bitset< _WordT, _Alloc > |
Functions | |
template<typename _CharT , typename _Traits , typename _Alloc1 > | |
void | std::tr2::dynamic_bitset< _WordT, _Alloc >::_M_copy_to_string (std::basic_string< _CharT, _Traits, _Alloc1 > &__str, _CharT __zero=_CharT('0'), _CharT __one=_CharT('1')) const |
template<typename _CharT , typename _Traits , typename _WordT , typename _Alloc > | |
std::basic_ostream< _CharT, _Traits > & | std::tr2::operator<< (std::basic_ostream< _CharT, _Traits > &__os, const dynamic_bitset< _WordT, _Alloc > &__x) |
template<typename _CharT , typename _Traits , typename _WordT , typename _Alloc > | |
std::basic_istream< _CharT, _Traits > & | std::tr2::operator>> (std::basic_istream< _CharT, _Traits > &__is, dynamic_bitset< _WordT, _Alloc > &__x) |
template<typename _WordT , typename _Alloc > | |
bool | std::tr2::operator!= (const dynamic_bitset< _WordT, _Alloc > &__lhs, const dynamic_bitset< _WordT, _Alloc > &__rhs) |
template<typename _WordT , typename _Alloc > | |
bool | std::tr2::operator<= (const dynamic_bitset< _WordT, _Alloc > &__lhs, const dynamic_bitset< _WordT, _Alloc > &__rhs) |
template<typename _WordT , typename _Alloc > | |
bool | std::tr2::operator> (const dynamic_bitset< _WordT, _Alloc > &__lhs, const dynamic_bitset< _WordT, _Alloc > &__rhs) |
template<typename _WordT , typename _Alloc > | |
bool | std::tr2::operator>= (const dynamic_bitset< _WordT, _Alloc > &__lhs, const dynamic_bitset< _WordT, _Alloc > &__rhs) |
template<typename _WordT , typename _Alloc > | |
dynamic_bitset< _WordT, _Alloc > | std::tr2::operator& (const dynamic_bitset< _WordT, _Alloc > &__x, const dynamic_bitset< _WordT, _Alloc > &__y) |
template<typename _WordT , typename _Alloc > | |
dynamic_bitset< _WordT, _Alloc > | std::tr2::operator| (const dynamic_bitset< _WordT, _Alloc > &__x, const dynamic_bitset< _WordT, _Alloc > &__y) |
template<typename _WordT , typename _Alloc > | |
dynamic_bitset< _WordT, _Alloc > | std::tr2::operator^ (const dynamic_bitset< _WordT, _Alloc > &__x, const dynamic_bitset< _WordT, _Alloc > &__y) |
template<typename _WordT , typename _Alloc > | |
dynamic_bitset< _WordT, _Alloc > | std::tr2::operator- (const dynamic_bitset< _WordT, _Alloc > &__x, const dynamic_bitset< _WordT, _Alloc > &__y) |
|
inline |
These comparisons for equality/inequality are, well, bitwise.
Definition at line 1122 of file dynamic_bitset.
|
inline |
Global bitwise operations on bitsets.
__x | A bitset. |
__y | A bitset of the same size as __x. |
These should be self-explanatory.
Definition at line 1157 of file dynamic_bitset.
|
inline |
Global bitwise operations on bitsets.
__x | A bitset. |
__y | A bitset of the same size as __x. |
These should be self-explanatory.
Definition at line 1187 of file dynamic_bitset.
|
inline |
Stream output operator for dynamic_bitset.
Definition at line 1200 of file dynamic_bitset.
|
inline |
These comparisons for equality/inequality are, well, bitwise.
Definition at line 1128 of file dynamic_bitset.
|
inline |
These comparisons for equality/inequality are, well, bitwise.
Definition at line 1134 of file dynamic_bitset.
|
inline |
These comparisons for equality/inequality are, well, bitwise.
Definition at line 1140 of file dynamic_bitset.
std::basic_istream<_CharT, _Traits>& std::tr2::operator>> | ( | std::basic_istream< _CharT, _Traits > & | __is, |
dynamic_bitset< _WordT, _Alloc > & | __x | ||
) |
Stream input operator for dynamic_bitset.Input will skip whitespace and only accept '0' and '1' characters. The dynamic_bitset will grow as necessary to hold the string of bits.
Definition at line 207 of file dynamic_bitset.tcc.
References std::basic_string< _CharT, _Traits, _Alloc >::reserve(), std::tr2::dynamic_bitset< _WordT, _Alloc >::size(), and std::basic_ios< _CharT, _Traits >::widen().
|
inline |
Global bitwise operations on bitsets.
__x | A bitset. |
__y | A bitset of the same size as __x. |
These should be self-explanatory.
Definition at line 1177 of file dynamic_bitset.
|
inline |
Global bitwise operations on bitsets.
__x | A bitset. |
__y | A bitset of the same size as __x. |
These should be self-explanatory.
Definition at line 1167 of file dynamic_bitset.