jubilant-funicular
|
Custom iterator for looping over the data in the linked list. More...
#include <LinkedNode.h>
Public Types | |
using | value_type = T |
using | difference_type = std::ptrdiff_t |
using | pointer = T * |
using | reference = T & |
using | iterator_category = std::forward_iterator_tag |
Public Member Functions | |
iterator (LinkedNode *node) | |
reference | operator* () const |
pointer | operator-> () const |
iterator & | operator++ () |
iterator | operator++ (int) |
bool | operator== (const iterator &rhs) const |
bool | operator!= (const iterator &rhs) const |
Private Attributes | |
LinkedNode * | m_node |
Custom iterator for looping over the data in the linked list.
Definition at line 15 of file LinkedNode.h.