![]() |
AireEngine
A 3D Open-World Game Engine
|
Iterator to iterate through the elements of a const HashSet. More...
#include <hashSet.h>
Public Member Functions | |
| ConstIterator (const HashSet< T > *owner, int i) | |
| ConstIterator & | operator++ () |
| ConstIterator | operator++ (int) |
| const T & | operator* () |
| const T * | operator-> () |
| bool | operator== (const ConstIterator &it) const |
| bool | operator!= (const ConstIterator &it) const |
Constructor. Intended for internal use by HashSet. Don't call directly.
| owner | The hash set traverse |
| i | The element index this iterator is bound to. |
|
inline |
Advance the iterator to the next element in the HashSet (pre-increment operator).
|
inline |
Advance the iterator to the next element in the HashSet (post-increment operator).