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