libcommonc++
0.7
|
A simple object wrapper for arrays. More...
#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 () | |
~Array () | |
T & | operator[] (int index) |
Index operator. More... | |
const T & | operator[] (int index) const |
Index operator. More... | |
operator T* () | |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
uint_t | size () const |
A simple object wrapper for arrays.
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 |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Index operator.
OutOfBoundsException | If the index is invalid. |
|
inline |
Index operator.
OutOfBoundsException | If the index is invalid. |
|
inline |