|
Torque2D Reference
|
#include <linkedList.h>
Public Member Functions | |
| LList () | |
| void | reset (void) |
| int | size (void) const |
| T * | first (void) const |
| T * | last (void) const |
| T * | next (T *current) |
| T * | prev (T *current) |
| T * | link (T *entry, T *next=NULL) |
| T * | link (T &entry, T *next=NULL) |
| void | unlink (T *entry) |
| T * | alloc (T *next=NULL) |
| void | free (T *entry) |
| void | free (void) |
| LListNode< T > * | findNode (T *entry) |
| LListNode< T > * | iterate (LListNode< T > *entry=NULL) |
Protected Attributes | |
| LListNode< T > * | first_entry |
| LListNode< T > * | last_entry |
| int | cnt |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
protected |
|
protected |
|
protected |