#include <Array.h++>

Public Types | |
| typedef T | value_type |
| typedef T * | iterator |
| typedef const T * | const_iterator |
| typedef T & | reference |
| typedef const T & | const_reference |
Public Member Functions | |
| Array () throw () | |
| ~Array () throw () | |
| T & | operator[] (int index) throw (OutOfBoundsException) |
| T & | operator[] (uint_t index) throw (OutOfBoundsException) |
| const T & | operator[] (int index) const throw (OutOfBoundsException) |
| const T & | operator[] (uint_t index) const throw (OutOfBoundsException) |
| operator T * () throw () | |
| iterator | begin () throw () |
| const_iterator | begin () const throw () |
| iterator | end () throw () |
| const_iterator | end () const throw () |
| size_t | size () const throw () |
See section 17.5.4 of The C++ Programming Language.
| typedef const T* const_iterator |
| typedef const T& const_reference |
| typedef T* iterator |
| typedef T& reference |
| typedef T value_type |
| Array | ( | ) | throw () [inline] |
| ~Array | ( | ) | throw () [inline] |
| const_iterator begin | ( | ) | const throw () [inline] |
| iterator begin | ( | ) | throw () [inline] |
| const_iterator end | ( | ) | const throw () [inline] |
| iterator end | ( | ) | throw () [inline] |
| operator T * | ( | ) | throw () [inline] |
| const T& operator[] | ( | uint_t | index | ) | const throw (OutOfBoundsException) [inline] |
| const T& operator[] | ( | int | index | ) | const throw (OutOfBoundsException) [inline] |
| T& operator[] | ( | uint_t | index | ) | throw (OutOfBoundsException) [inline] |
| T& operator[] | ( | int | index | ) | throw (OutOfBoundsException) [inline] |
| size_t size | ( | ) | const throw () [inline] |
1.5.9