Additional Inherited Members |
| Array (long is=default_init_size, long incr=default_increment) |
| Constructor.
|
| Array (const Array< T * > &array) |
| Copy-constructor.
|
Array< T * > & | operator= (const Array< T * > ©) |
| Assignment operator.
|
| ~Array () |
| Destructor.
|
void | append (const T *&item) |
| Append an item to the array.
|
void | insert (long index, const T *&item) |
| Insert an item at the given array index.
|
void | prepend (const T *&item) |
| Prepend an item.
|
void | remove (long index) |
| Remove the array item at the given array index.
|
void | reset () |
| Reset the array.
|
T *& | get (long index) |
| Get a reference to the array item at the given array index.
|
T *& | operator[] (long index) |
| Get a reference to the array item at the given array index.
|
T * | fetch (long index) const |
| Get the array item at the given array index.
|
T *& | lookup (long index) const |
| Get a reference to the array item at the given array index.
|
long | length () const |
| Get the number of items in the array.
|