The template argument, Nb, may be any non-negative number, specifying the number of bits (e.g., "0", "12", "1024*1024").
In the general unoptimized case, storage is allocated in word-sized blocks. Let B be the number of bits in a word, then (Nb+(B-1))/B words will be used for storage. B - NbB bits are unused. (They are the high-order bits in the highest word.) It is a class invariant that those unused bits are always zero.
If you think of bitset as "a simple array of bits," be aware that your mental picture is reversed: a bitset behaves the same way as bits in integers do, with the bit at index 0 in the "least significant / right-hand" position, and the bit at index Nb-1 in the "most significant / left-hand" position. Thus, unlike other containers, a bitset's index "counts from right to left," to put it very loosely.
This behavior is preserved when translating to and from strings. For example, the first line of the following program probably prints "b('a') is 0001100001" on a modern ASCII system.
#include <bitset> #include <iostream> #include <sstream> using namespace std; int main() { long a = 'a'; bitset<10> b(a); cout << "b('a') is " << b << endl; ostringstream s; s << b; string str = s.str(); cout << "index 3 in the string is " << str[3] << " but\n" << "index 3 in the bitset is " << b[3] << endl; }
Also see http://gcc.gnu.org/onlinedocs/libstdc++/ext/sgiexts.html#ch23 for a description of extensions.
Definition at line 645 of file bitset.
|
All bits set to zero.
|
|
Initial bits bitwise-copied from a single word (others set to zero).
|
|
Use a subset of a string.
Definition at line 754 of file bitset. References bitset::_M_copy_from_string(), and basic_string::size(). |
|
Use a subset of a string.
Definition at line 775 of file bitset. References bitset::_M_copy_from_string(), and basic_string::size(). |
|
Tests whether any of the bits are on.
Definition at line 1099 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_is_any(). |
|
Returns the number of bits which are set.
Definition at line 1061 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_count(). |
|
Toggles a given bit to its opposite value.
Definition at line 960 of file bitset. References bitset::_Unchecked_flip(). |
|
Toggles every bit to its opposite value.
Definition at line 947 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_flip(). |
|
Tests whether any of the bits are on.
Definition at line 1107 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_is_any(). |
|
Operations on bitsets.
Definition at line 794 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_and(). |
|
Self-explanatory.
|
|
Operations on bitsets.
Definition at line 823 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_left_shift(), and _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_reset(). |
|
These comparisons for equality/inequality are, well, bitwise.
Definition at line 1072 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_is_equal(). |
|
Self-explanatory.
|
|
Operations on bitsets.
Definition at line 836 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_reset(), and _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_right_shift(). |
|
Array-indexing support.
Definition at line 990 of file bitset. References bitset::reference. |
|
Operations on bitsets.
Definition at line 808 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_xor(). |
|
Operations on bitsets.
Definition at line 801 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_or(). |
|
See the no-argument flip().
|
|
Sets a given bit to false.
set(pos,false) .
Definition at line 936 of file bitset. References bitset::_Unchecked_reset(). |
|
Sets every bit to false.
Definition at line 922 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_reset(). Referenced by bitset::_M_copy_from_string(). |
|
Sets a given bit to a particular value.
Definition at line 911 of file bitset. References __gnu_cxx::__val, and bitset::_Unchecked_set(). |
|
Sets every bit to true.
Definition at line 897 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_set(). Referenced by bitset::_M_copy_from_string(). |
|
Returns the total number of bits.
|
|
Tests the value of a bit.
Definition at line 1087 of file bitset. References bitset::_Unchecked_test(). |
|
Retuns a character interpretation of the bitset.
Definition at line 1018 of file bitset. References bitset::_M_copy_to_string(). |
|
Retuns a numerical interpretation of the bitset.
Definition at line 1005 of file bitset. References _Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_to_ulong(). |