reference | bit_vector | A proxy class that acts as a reference to a single bit. See below for details. |
const_reference | Container | Const reference to value_type. In bit_vector this is simply defined to be bool. |
size_type | Container | An unsigned integral type. |
difference_type | Container | A signed integral type. |
iterator | Container | Iterator used to iterate through a bit_vector. |
const_iterator | Container | Const iterator used to iterate through a bit_vector. |
reverse_iterator | Reversible Container | Iterator used to iterate backwards through a bit_vector. |
const_reverse_iterator | Reversible Container | Const iterator used to iterate backwards through a bit_vector. |
iterator begin() | Container | Returns an iterator pointing to the beginning of the bit_vector. |
iterator end() | Container | Returns an iterator pointing to the end of the bit_vector. |
const_iterator begin() const | Container | Returns a const_iterator pointing to the beginning of the bit_vector. |
const_iterator end() const | Container | Returns a const_iterator pointing to the end of the bit_vector. |
reverse_iterator rbegin() | Reversible Container | Returns a reverse_iterator pointing to the beginning of the reversed bit_vector. |
reverse_iterator rend() | Reversible Container | Returns a reverse_iterator pointing to the end of the reversed bit_vector. |
const_reverse_iterator rbegin() const | Reversible | Container Returns a const_reverse_iterator pointing to the beginning of the reversed bit_vector. |
const_reverse_iterator rend() const | Reversible Container | Returns a const_reverse_iterator pointing to the end of the reversed bit_vector. |
size_type size() const | Container | Returns the number of elements in the bit_vector. |