#include <array.h>
Inheritance diagram for pArray< T >:
Public Member Functions | |
void | copyAndPrependColumn (pArray &source) |
Copies data from source to the current object prepending an empty column. | |
void | copySubset (pArray &source, long lastColumnToCopy) |
Copies a subset of data from source to the current object. | |
void | copySubset (pArray &source, long firstColumnToCopy, long lastColumnToCopy, long startingColumn) |
Copies a subset of data from source to the current object. | |
pArray< T > & | operator= (pArray< T > &source) |
pArray< T > | operator= (pArray< T > &source) const |
void | copyAndPrependColumn (pArray &source) |
Copies data from source to the current object prepending an empty column. | |
void | copySubset (pArray &source, long lastColumnToCopy) |
Copies a subset of data from source to the current object. | |
void | copySubset (pArray &source, long firstColumnToCopy, long lastColumnToCopy, long startingColumn) |
Copies a subset of data from source to the current object. | |
pArray< T > & | operator= (pArray< T > &source) |
pArray< T > | operator= (pArray< T > &source) const |
pArray stores the array elements directly in the array. Array provides an easy way to acess the elements through the parenthesis operator.
void pArray< T >::copySubset | ( | pArray< T > & | source, | |
long | firstColumnToCopy, | |||
long | lastColumnToCopy, | |||
long | startingColumn | |||
) | [inline] |
Copies a subset of data from source
to the current object.
Copy from firstColumnToCopy
to the lastColumnToCopy
inserting them after startingColumn
. Assumes that the Array has the correct size.
void pArray< T >::copySubset | ( | pArray< T > & | source, | |
long | firstColumnToCopy, | |||
long | lastColumnToCopy, | |||
long | startingColumn | |||
) | [inline] |
Copies a subset of data from source
to the current object.
Copy from firstColumnToCopy
to the lastColumnToCopy
inserting them after startingColumn
. Assumes that the Array has the correct size.