#include <qlist.h>
Public Types |
|
|
typedef std::random_access_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 (Node *n) | |
| const_iterator (const const_iterator &o) | |
| const_iterator (const iterator &o) | |
| const T & | operator* () const |
| const T * | operator-> () const |
| const T & | operator[] (int j) const |
| bool | operator== (const const_iterator &o) const |
| bool | operator!= (const const_iterator &o) const |
| bool | operator< (const const_iterator &other) const |
| bool | operator<= (const const_iterator &other) const |
| bool | operator> (const const_iterator &other) const |
| bool | operator>= (const const_iterator &other) const |
| const_iterator & | operator++ () |
| const_iterator | operator++ (int) |
| const_iterator & | operator-- () |
| const_iterator | operator-- (int) |
| const_iterator & | operator+= (int j) |
| const_iterator & | operator-= (int j) |
| const_iterator | operator+ (int j) const |
| const_iterator | operator- (int j) const |
| int | operator- (const_iterator j) const |
Public Attributes |
|
| Node * | i |
| typedef std::random_access_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 | ( | Node * | n | ) | [inline] |
| const_iterator | ( | const const_iterator & | o | ) | [inline] |
| const_iterator | ( | const iterator & | o | ) | [inline] |
| const T* operator-> | ( | void | ) | const [inline] |
| const T& operator[] | ( | int | j | ) | const [inline] |
| bool operator== | ( | const const_iterator & | o | ) | const [inline] |
| bool operator!= | ( | const const_iterator & | o | ) | const [inline] |
| bool operator< | ( | const const_iterator & | other | ) | const [inline] |
| bool operator<= | ( | const const_iterator & | other | ) | const [inline] |
| bool operator> | ( | const const_iterator & | other | ) | const [inline] |
| bool operator>= | ( | const const_iterator & | other | ) | const [inline] |
| const_iterator& operator++ | ( | ) | [inline] |
| const_iterator operator++ | ( | int | ) | [inline] |
| const_iterator& operator-- | ( | ) | [inline] |
| const_iterator operator-- | ( | int | ) | [inline] |
| const_iterator& operator+= | ( | int | j | ) | [inline] |
| const_iterator& operator-= | ( | int | j | ) | [inline] |
| const_iterator operator+ | ( | int | j | ) | const [inline] |
Definition at line 247 of file qlist.h.
{ return const_iterator(i+j); }
| const_iterator operator- | ( | int | j | ) | const [inline] |
Definition at line 248 of file qlist.h.
{ return const_iterator(i-j); }
| int operator- | ( | const_iterator | j | ) | const [inline] |
| Node* i |