![]() |
#include <array.h>
Public Types | |
| typedef TYPE | value_type |
| typedef int | size_type |
| typedef TYPE const & | const_reference |
| typedef TYPE const * | const_iterator |
| typedef TYPE & | reference |
| typedef TYPE * | iterator |
Public Member Functions | |
| Array () | |
| Array (const Array< value_type > &array) | |
| Array (const value_type *ptr, size_type size) | |
| ~Array () | |
| size_type | size () const |
| const_reference | operator[] (int index) const |
| const_iterator | begin () const |
| const_iterator | end () const |
| reference | operator[] (int index) |
| iterator | begin () |
| iterator | end () |
Protected Attributes | |
| value_type * | _begin |
| size_type | _size |
| typedef TYPE const* const_iterator |
| typedef TYPE const& const_reference |
| typedef TYPE value_type |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
protected |