Class for iterating through the circular array in a manner that is familiar to those who use the STL. More...
#include <circulararray.h>
Public Member Functions | |
reverse_iterator () | |
reverse_iterator (const reverse_iterator &itr) | |
~reverse_iterator () | |
T & | operator-> () |
T & | operator* () |
reverse_iterator & | operator= (const iterator &itr) |
reverse_iterator & | operator++ (int) |
reverse_iterator & | operator++ () |
bool | operator!= (const iterator &itr) |
Friends | |
class | CircularArray |
Class for iterating through the circular array in a manner that is familiar to those who use the STL.
Definition at line 131 of file circulararray.h.
CxUtils::CircularArray< T >::reverse_iterator::reverse_iterator | ( | ) | [inline] |
Definition at line 135 of file circulararray.h.
CxUtils::CircularArray< T >::reverse_iterator::reverse_iterator | ( | const reverse_iterator & | itr ) | [inline] |
Definition at line 136 of file circulararray.h.
CxUtils::CircularArray< T >::reverse_iterator::~reverse_iterator | ( | ) | [inline] |
Definition at line 137 of file circulararray.h.
bool CxUtils::CircularArray< T >::reverse_iterator::operator!= | ( | const iterator & | itr ) | [inline] |
Definition at line 168 of file circulararray.h.
T& CxUtils::CircularArray< T >::reverse_iterator::operator* | ( | ) | [inline] |
Definition at line 142 of file circulararray.h.
reverse_iterator& CxUtils::CircularArray< T >::reverse_iterator::operator++ | ( | ) | [inline] |
Definition at line 163 of file circulararray.h.
reverse_iterator& CxUtils::CircularArray< T >::reverse_iterator::operator++ | ( | int | ) | [inline] |
Definition at line 158 of file circulararray.h.
T& CxUtils::CircularArray< T >::reverse_iterator::operator-> | ( | ) | [inline] |
Definition at line 138 of file circulararray.h.
reverse_iterator& CxUtils::CircularArray< T >::reverse_iterator::operator= | ( | const iterator & | itr ) | [inline] |
Definition at line 152 of file circulararray.h.
friend class CircularArray [friend] |
Definition at line 133 of file circulararray.h.