#include <qset.h>
Public Types |
|
|
typedef std::bidirectional_iterator_tag |
iterator_category |
| typedef qptrdiff | difference_type |
| typedef T | value_type |
| typedef const T * | pointer |
| typedef const T & | reference |
Public Member Functions |
|
| const_iterator () | |
| const_iterator (typename Hash::const_iterator o) | |
| const_iterator (const const_iterator &o) | |
| const_iterator (const iterator &o) | |
| const_iterator & | operator= (const const_iterator &o) |
| const T & | operator* () const |
| const T * | operator-> () const |
| bool | operator== (const const_iterator &o) const |
| bool | operator!= (const const_iterator &o) const |
| const_iterator & | operator++ () |
| const_iterator | operator++ (int) |
| const_iterator & | operator-- () |
| const_iterator | operator-- (int) |
| const_iterator | operator+ (int j) const |
| const_iterator | operator- (int j) const |
| const_iterator & | operator+= (int j) |
| const_iterator & | operator-= (int j) |
Friends |
|
| class | iterator |
| typedef std::bidirectional_iterator_tag iterator_category |
| typedef qptrdiff difference_type |
| typedef T value_type |
| typedef const T* pointer |
| typedef const T& reference |
| const_iterator | ( | ) | [inline] |
| const_iterator | ( | typename Hash::const_iterator | o | ) | [inline] |
| const_iterator | ( | const const_iterator & | o | ) | [inline] |
| const_iterator | ( | const iterator & | o | ) | [inline] |
| const_iterator& operator= | ( | const const_iterator & | o | ) | [inline] |
| const T* operator-> | ( | void | ) | const [inline] |
| bool operator== | ( | const const_iterator & | o | ) | const [inline] |
| bool operator!= | ( | const const_iterator & | o | ) | const [inline] |
| const_iterator& operator++ | ( | ) | [inline] |
| const_iterator operator++ | ( | int | ) | [inline] |
Definition at line 151 of file qset.h.
{ const_iterator r = *this; ++i; return r; }
| const_iterator& operator-- | ( | ) | [inline] |
| const_iterator operator-- | ( | int | ) | [inline] |
Definition at line 153 of file qset.h.
{ const_iterator r = *this; --i; return r; }
| const_iterator operator+ | ( | int | j | ) | const [inline] |
| const_iterator operator- | ( | int | j | ) | const [inline] |
| const_iterator& operator+= | ( | int | j | ) | [inline] |
| const_iterator& operator-= | ( | int | j | ) | [inline] |
friend class iterator
[friend] |