Gamedev Framework (gf)
0.3.0
A C++11 framework for 2D games
|
A range iterator. More...
#include <gf/Range.h>
Public Member Functions | |
constexpr | Iterator (T iteratorIndex) noexcept |
Constructor. More... | |
T | operator* () noexcept |
Dereference operator. More... | |
Iterator & | operator++ () noexcept |
Increment operator. More... | |
constexpr bool | operator!= (const Iterator &other) const noexcept |
Inequality operator. More... | |
constexpr bool | operator== (const Iterator &other) const noexcept |
Equality operator. More... | |
Public Attributes | |
T | index |
The index in the range. More... | |
A range iterator.
|
inlinenoexcept |
Constructor.
iteratorIndex | Index in the range |
|
inlinenoexcept |
Inequality operator.
other | Another iterator |
Dereference operator.
Increment operator.
|
inlinenoexcept |
Equality operator.
other | Another iterator |