Lolly 1.4.28
|
A template class for iterators. More...
#include <iterator.hpp>
Public Member Functions | |
ABSTRACT_TEMPLATE (iterator, T) | |
iterator< T > | begin () |
std::nullptr_t | end () |
void | operator++ () |
T | operator* () |
Returns the current element of the iterator, then move the iterator to the next element. | |
bool | operator!= (std::nullptr_t) |
A template class for iterators.
T | The type for the iterator's return value. |
Definition at line 69 of file iterator.hpp.
Definition at line 71 of file iterator.hpp.
|
inline |
Definition at line 72 of file iterator.hpp.
|
inline |
Definition at line 73 of file iterator.hpp.
|
inline |
Returns the current element of the iterator, then move the iterator to the next element.
Definition at line 78 of file iterator.hpp.
|
inline |
Definition at line 79 of file iterator.hpp.