AFF --- A container for numbers (array) by Friederich and Forbriger.
aff::SimpleRigidArray< T, N > Class Template Reference

A very basic rigid array class (with deep inline copy). More...

#include <simplearray.h>

Inheritance diagram for aff::SimpleRigidArray< T, N >:

Public Types

typedef T Telement
 element type More...
 
typedef T Tvalue
 

Public Member Functions

Constructors
Note
The order of declaration matters in template expansion!
 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
Note
The order of declaration matters in template expansion!
template<class TT >
SimpleRigidArrayoperator= (const TT &value)
 copy a value to all positions More...
 
template<class TT >
SimpleRigidArrayoperator= (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

Marray [N]
 

Detailed Description

template<class T, Tsize N>
class aff::SimpleRigidArray< T, 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.

Note
To pass index values to a aff::Array (during construction or access), we pass a SimpleRigidArray of appropriate dimension 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

Note
If you use the default constructor, the values are uninitialized. There is no hidden mechanism to set the values to 0 or other meaningful value!
Parameters
Telement type
Ndimension 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

See also
aff::util::Inline, aff::util::Inline2
Todo:
Rework this documentation in particular with respect to scoping
Examples:
tests/simplearraytest.cc.

Definition at line 94 of file simplearray.h.


The documentation for this class was generated from the following file: