#include <MAUtil/Dictionary.h>
Public Member Functions | |
Storage & | operator * () |
Storage * | operator-> () |
Iterator & | operator++ () |
Iterator | operator++ (int) |
Iterator & | operator-- () |
Iterator | operator-- (int) |
bool | operator== (const Iterator &) const |
bool | operator!= (const Iterator &) const |
Iterator & | operator= (const Iterator &) |
Iterator (const Iterator &) | |
Protected Member Functions | |
Iterator (dict_t *) | |
Protected Attributes | |
DictNode * | mNode |
dict_t * | mDict |
Friends | |
class | Dictionary |
class | ConstIterator |
|
|
|
|
|
|
|
|
|
Causes the Iterator to point to the next element in the Dictionary to which it is bound. If the Iterator points to Dictionary::end(), this operation will cause a crash. |
|
|
|
Causes the Iterator to point to the previous element in the Dictionary to which it is bound.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|