![]()  | 
  
    Gamedev Framework (gf)
    0.8.0
    
   A C++14 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 (prefix)  More... | |
| Iterator | operator++ (int) noexcept | 
| Increment operator (postfix)  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.
Constructor.
| iteratorIndex | Index in the range | 
      
  | 
  inlinenoexcept | 
Inequality operator.
| other | Another iterator | 
Dereference operator.
Increment operator (prefix)
Increment operator (postfix)
      
  | 
  inlinenoexcept | 
Equality operator.
| other | Another iterator | 
 1.8.13