#include <types.h>
Public Methods | |
| ListIterator (const List &l) | |
| ListIterator & | operator= (const ListIterator &iterator) |
| ListIterator (const ListIterator &i) | |
| ValueImp * | operator-> () const |
| Value | operator++ () |
| Value | operator++ (int) |
| Value | operator-- () |
| Value | operator-- (int) |
| bool | operator== (const ListIterator &it) const |
| bool | operator!= (const ListIterator &it) const |
Definition at line 58 of file types.h.
|
|
Construct an iterator that points to the first element of the list.
|
|
|
Copy constructor. |
|
|
Check for inequality with another iterator.
|
|
|
Prefix increment operator. |
|
|
Postfix increment operator.
|
|
|
Prefix decrement operator. |
|
|
Postfix decrement operator. |
|
|
Dereference the iterator.
|
|
|
Assignment constructor. |
|
|
Compare the iterator with another one.
|
1.2.18