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