|
Base Module
VST 3.6.5
SDK for developing VST Plug-in
|
Iterator for doubly linked template list. More...
#include <tdlist.h>
Inheritance diagram for TDLinkedListIterator< T >:Public Member Functions | |
| TDLinkedListIterator (const TDLinkedList< T > &list) | |
| virtual bool | done () const |
| Check if end of container is reached. More... | |
| virtual T & | next () |
| Returns the current data and advances the iterator. postfix as in t = c++;. More... | |
| virtual T & | previous () |
| Returns the current data and backup. postfix as in t = c–;. More... | |
| virtual T & | current () const |
| Returns the current data. More... | |
| virtual void | first () |
| Move to first data. More... | |
| virtual void | last () |
| Move to last data. More... | |
| const TDLinkedList< T > & | list () const |
| Return list reference. More... | |
Public Member Functions inherited from TIterator< T > | |
| TIterator (const TContainer< T > &cont) | |
| virtual | ~TIterator () |
| T & | next (const T &) |
| Advance to next equal. More... | |
| T & | previous (const T &) |
| Backup to previous equal. More... | |
| const TContainer< T > & | container () const |
| Return container reference. More... | |
| operator int32 () const | |
| Check if not end. More... | |
| T & | operator++ () |
| Advance the iterator to the next item and return it. More... | |
| T & | operator++ (int) |
| Return the current item and advance the iterator to the next. More... | |
| T & | operator+= (int32 n) |
| Advance the iterator n places and returns the item. More... | |
| T & | operator-- () |
| Decrement the iterator by one and return the item. More... | |
| T & | operator-- (int) |
| Return the current item and decrement the iterator by one. More... | |
| T & | operator-= (int32) |
| Decrement the iterator n places and returns the item. More... | |
| T & | operator() () const |
| Return current item. More... | |
Additional Inherited Members | |
Protected Attributes inherited from TIterator< T > | |
| const TContainer< T > & | _container |
| Iterated container. More... | |
Iterator for doubly linked template list.
Implements the TIterator interface for TDLinkedList.
| TDLinkedListIterator | ( | const TDLinkedList< T > & | list | ) |
|
virtual |
Check if end of container is reached.
Implements TIterator< T >.
|
virtual |
Returns the current data and advances the iterator. postfix as in t = c++;.
Implements TIterator< T >.
|
virtual |
Returns the current data and backup. postfix as in t = c–;.
Implements TIterator< T >.
|
virtual |
Returns the current data.
Implements TIterator< T >.
|
virtual |
Move to first data.
Implements TIterator< T >.
|
virtual |
Move to last data.
Implements TIterator< T >.
| const TDLinkedList< T > & list | ( | ) | const |
Return list reference.