|
Embedded Template Library
1.0
|
The const_iterator type. More...
#include <bitset.h>
Public Member Functions | |
| const_iterator () | |
| Constructor. | |
| const_iterator (const typename bitset< N >::iterator &other) | |
| Copy constructor from iterator. | |
| const_iterator (const const_iterator &other) | |
| Copy constructor. | |
| const_iterator & | operator++ () |
| ++ operator (pre) | |
| const_iterator | operator++ (int) |
| ++ operator (post) | |
| const_iterator & | operator-- () |
| – operator (pre) | |
| const_iterator | operator-- (int) |
| – operator (post) | |
| bool | operator* () const |
| const_iterator & | operator+= (int i) |
| += operator | |
| const_iterator & | operator-= (int i) |
| -= operator | |
| const_iterator & | operator= (const const_iterator &other) |
| = operator | |
Friends | |
| class | bitset< N > |
| const_iterator | operator+ (const const_iterator &other, int i) |
| const_iterator | operator- (const const_iterator &other, int i) |
| bool | operator== (const const_iterator &lhs, const const_iterator &rhs) |
| == operator | |
| bool | operator!= (const const_iterator &lhs, const const_iterator &rhs) |
| != operator | |
| bool | operator< (const const_iterator &lhs, const const_iterator &rhs) |
| < operator | |
| bool | operator> (const const_iterator &lhs, const const_iterator &rhs) |
| |
| bool | operator<= (const const_iterator &lhs, const const_iterator &rhs) |
| <= operator | |
| bool | operator>= (const const_iterator &lhs, const const_iterator &rhs) |
| >= operator | |
The const_iterator type.
|
inline |
|
friend |
|
friend |