#include <mfcstl/collections/clist_adaptors.hpp>

Public Member Functions | |
| const_iterator () | |
| Default constructor. | |
| const_iterator (rhs_type rhs) | |
| Move constructor | |
| const_iterator const & | operator= (rhs_type rhs) |
| Move assignment operator | |
| value_type | operator* () const |
| Dereference operator. | |
| const_iterator & | operator++ () |
| Pre-increment operator. | |
| void | operator++ (int) |
| Post-increment operator. | |
| bool | operator== (const_iterator const &rhs) const |
Evaluates whether this is equivalent to rhs. | |
| bool | operator!= (const_iterator const &rhs) const |
Evaluates whether this is not equivalent to rhs. | |
| const_iterator | ( | ) | [inline] |
Default constructor.
| const_iterator | ( | rhs_type | rhs | ) | [inline] |
| const_iterator const& operator= | ( | rhs_type | rhs | ) | [inline] |
Move assignment operator
| value_type operator* | ( | ) | const [inline] |
| const_iterator& operator++ | ( | ) | [inline] |
| void operator++ | ( | int | ) | [inline] |
Post-increment operator.
| bool operator== | ( | const_iterator const & | rhs | ) | const [inline] |
Evaluates whether this is equivalent to rhs.
| rhs | The instance from which to copy construct |
| true | The two iterators refer to the same position in the same container | |
| false | The two iterators do not refer to the same position in the same container |
References CList_adaptor_base::const_iterator::m_list, CList_adaptor_base::const_iterator::m_pos, and MFCSTL_MESSAGE_ASSERT.
| bool operator!= | ( | const_iterator const & | rhs | ) | const [inline] |
Evaluates whether this is not equivalent to rhs.
| rhs | The instance from which to copy construct |
| true | The two iterators do not refer to the same position in the same container | |
| false | The two iterators refer to the same position in the same container |
1.5.6