AFF --- A container for numbers (array) by Friederich and Forbriger.
|
A very basic rigid array class (with deep inline copy). More...
#include <simplearray.h>
Public Types | |
typedef T | Telement |
element type More... | |
typedef T | Tvalue |
Public Member Functions | |
Constructors | |
| |
SimpleRigidArray () | |
construct without(!) initializing More... | |
template<class TT > | |
SimpleRigidArray (const SimpleRigidArray< TT, N > &array) | |
copy with deep inline copy More... | |
SimpleRigidArray (const T &value) | |
set constructor More... | |
Operators | |
| |
template<class TT > | |
SimpleRigidArray & | operator= (const TT &value) |
copy a value to all positions More... | |
template<class TT > | |
SimpleRigidArray & | operator= (const SimpleRigidArray< TT, N > &array) |
copy with deep inline copy More... | |
Access | |
T & | operator[] (const Tsubscript &i) |
access More... | |
const T & | operator[] (const Tsubscript &i) const |
const access More... | |
T * | pointer () |
pointer access More... | |
const T * | pointer () const |
const pointer access More... | |
Tsize | size () const |
size of array More... | |
Private Attributes | |
T | Marray [N] |
A very basic rigid array class (with deep inline copy).
This class is intensively used by the array classes, in particular by the Shape category. Shape categories need to hold a set of index ranges (e.g.) in an array with array dimension depending on the dimensionality of the array. The arrays used for this purpose should be rigid, i.e. their dimension is defined during compile time and they usually perform no heap allocation on their own (an thus may also be used with stack memory). aff::util::SimpleRigidArray serves for this purpose.
N
. To fill this array we would either need to provide specializations with the appropriate number of constructor arguments or fill each element after the other. Both approaches range from inconvenient to impossible.For examples to use SimpleRigidArray see tests/simplearraytest.cc
T | element type |
N | dimension of the array |
Functions to manipulate SimpleRigidArray objects are provided in aff::util::Inline and aff::util::Inline2 which are presented in lib/rawarfun.h
Definition at line 94 of file simplearray.h.