#include <safe_iterator.h>
Inheritance diagram for __gnu_debug::Safe_iterator< Iterator, Sequence >:
Public Member Functions | |
Safe_iterator () | |
Safe_iterator (const Iterator &__i, const Sequence *seq) | |
Safe iterator construction from an unsafe iterator and its sequence. | |
Safe_iterator (const Safe_iterator &x) | |
Copy construction. | |
template<typename MutableIterator> | |
Safe_iterator (const Safe_iterator< MutableIterator, typename std::__enable_if< Sequence,(std::are_same< MutableIterator, typename Sequence::iterator::Base_iterator >::M_type) >::M_type > &x) | |
Converting constructor from a mutable iterator to a constant iterator. | |
Safe_iterator & | operator= (const Safe_iterator &x) |
Copy assignment. | |
reference | operator * () const |
Iterator dereference. | |
pointer | operator-> () const |
Iterator dereference. | |
Safe_iterator & | operator++ () |
Iterator preincrement. | |
Safe_iterator | operator++ (int) |
Iterator postincrement. | |
Safe_iterator & | operator-- () |
Iterator predecrement. | |
Safe_iterator | operator-- (int) |
Iterator postdecrement. | |
Iterator | base () const |
Return the underlying iterator. | |
operator Iterator () const | |
Conversion to underlying non-debug iterator to allow better interaction with non-debug containers. | |
void | M_attach (const Sequence *seq) |
void | M_invalidate () |
bool | M_dereferenceable () const |
Is the iterator dereferenceable? | |
bool | M_incrementable () const |
Is the iterator incrementable? | |
bool | M_is_begin () const |
Is this iterator equal to the sequence's begin() iterator? | |
bool | M_is_end () const |
Is this iterator equal to the sequence's end() iterator? | |
void | M_attach (Safe_sequence_base *seq, bool constant) |
void | M_detach () |
bool | M_attached_to (const Safe_sequence_base *seq) const |
bool | M_singular () const |
bool | M_can_compare (const Safe_iterator_base &x) const |
Static Public Member Functions | |
template<typename Iterator1, typename Iterator2> | |
static pair< difference_type, Distance_precision > | M_get_distance (const Iterator1 &__lhs, const Iterator2 &__rhs) |
Public Attributes | |
Safe_sequence_base * | M_sequence |
unsigned int | M_version |
Safe_iterator_base * | M_prior |
Safe_iterator_base * | M_next |
Private Types | |
enum | Distance_precision |
Private Member Functions | |
bool | M_constant () const |
Determine if this is a constant iterator. | |
Private Attributes | |
Iterator | M_current |
The underlying iterator. |
The class template Safe_iterator is a wrapper around an iterator that tracks the iterator's movement among sequences and checks that operations performed on the "safe" iterator are legal. In additional to the basic iterator operations (which are validated, and then passed to the underlying iterator), Safe_iterator has member functions for iterator invalidation, attaching/detaching the iterator from sequences, and querying the iterator's state.
Definition at line 64 of file safe_iterator.h.
|
The precision to which we can calculate the distance between two iterators. Definition at line 71 of file safe_iterator.h. |
|
Definition at line 100 of file safe_iterator.h. |
|
Safe iterator construction from an unsafe iterator and its sequence.
Definition at line 109 of file safe_iterator.h. |
|
Copy construction.
Definition at line 121 of file safe_iterator.h. |
|
Converting constructor from a mutable iterator to a constant iterator.
Definition at line 137 of file safe_iterator.h. |
|
Return the underlying iterator.
Definition at line 310 of file safe_iterator.h. |
|
Attaches this iterator to the given sequence, detaching it from whatever sequence it was attached to originally. If the new sequence is the NULL pointer, the iterator is left unattached. |
|
Attach iterator to the given sequence. Definition at line 320 of file safe_iterator.h. |
|
Determines if we are attached to the given sequence. Definition at line 120 of file safe_base.h. |
|
Can we compare this iterator to the given iterator |
|
Determine if this is a constant iterator.
Definition at line 83 of file safe_iterator.h. |
|
Is the iterator dereferenceable?
Definition at line 332 of file safe_iterator.h. |
|
Detach the iterator for whatever sequence it is attached to, if any. |
|
Determine the distance between two iterators with some known precision. Definition at line 362 of file safe_iterator.h. |
|
Is the iterator incrementable?
Definition at line 337 of file safe_iterator.h. |
|
Invalidate the iterator, making it singular. Definition at line 112 of file safe_iterator.tcc. |
|
Is this iterator equal to the sequence's begin() iterator?
Definition at line 387 of file safe_iterator.h. |
|
Is this iterator equal to the sequence's end() iterator?
Definition at line 391 of file safe_iterator.h. |
|
Is this iterator singular? |
|
Iterator dereference.
Definition at line 173 of file safe_iterator.h. |
|
Conversion to underlying non-debug iterator to allow better interaction with non-debug containers.
Definition at line 316 of file safe_iterator.h. |
|
Iterator postincrement.
Definition at line 217 of file safe_iterator.h. |
|
Iterator preincrement.
Definition at line 203 of file safe_iterator.h. |
|
Iterator postdecrement.
Definition at line 247 of file safe_iterator.h. |
|
Iterator predecrement.
Definition at line 233 of file safe_iterator.h. |
|
Iterator dereference.
Definition at line 189 of file safe_iterator.h. |
|
Copy assignment.
Definition at line 157 of file safe_iterator.h. |
|
The underlying iterator.
Definition at line 79 of file safe_iterator.h. |
|
Pointer to the next iterator in the sequence's list of iterators. Only valid when M_sequence != NULL. Definition at line 72 of file safe_base.h. |
|
Pointer to the previous iterator in the sequence's list of iterators. Only valid when M_sequence != NULL. Definition at line 68 of file safe_base.h. |
|
The sequence this iterator references; may be NULL to indicate a singular iterator. Definition at line 55 of file safe_base.h. |
|
The version number of this iterator. The sentinel value 0 is used to indicate an invalidated iterator (i.e., one that is singular because of an operation on the container). This version number must equal the version number in the sequence referenced by M_sequence for the iterator to be non-singular. Definition at line 64 of file safe_base.h. |