Structure to hold all data for one list.
More...
#include <LinkedList.h>
|
|
ListElement * | first |
| | first element in the list
|
|
ListElement * | last |
| | last element in the list
|
|
ListElement * | current |
| | current element in the list, for iteration
|
|
int | count |
| | no of items
|
|
size_t | size |
| | heap storage used
|
Structure to hold all data for one list.
The documentation for this struct was generated from the following file: