#include <vdkarray.h>
Inheritance diagram for VDKArray< T >:

typedef Array<someClass> SomeClassArray;
Constructor.
| n | array length |
| T& VDKArray< T >::At | ( | int | ndx | ) | [inline, private] |
/internal
| int VDKArray< T >::size | ( | ) | [inline] |
Returns array size
| void VDKArray< T >::resize | ( | int | ) |
Resize array
| T& VDKArray< T >::operator[] | ( | int | ndx | ) | [inline] |
Access operator
typedef<int> IntArray;
IntArray integers(10);
integers[0] = 6;
int i = integers[0];
Sorts array on place in n*log(n) time.
1.5.1