#include <CTBcarray2d.hxx>
Collaboration diagram for CTBcarray2d:
Public Methods | |
CTBcarray2d () | |
CTBcarray2d (T rhs) | |
CTBcarray2d (const CTBcarray2d< T, DIM1, DIM2 > &rhs) | |
T * | operator[] (CTBint i_row) |
const T * | operator[] (CTBint i_row) const |
T & | operator() (CTBint i_row, CTBint i_col) |
const T & | operator() (CTBint i_row, CTBint i_col) const |
operator CTBmatrixDsc () | |
operator CTBmatrixCDsc () const | |
CTBcarray2d< T, DIM1, DIM2 > & | operator= (T rhs) |
CTBcarray2d< T, DIM1, DIM2 > & | operator= (const CTBcarray2d< T, DIM1, DIM2 > &rhs) |
Protected Attributes | |
T | m_data [DIM1][DIM2] |
Related Functions | |
(Note that these are not member functions.) | |
ostream & | operator<< (ostream &os, const CTBcarray2d< T, DIM1, DIM2 > &obj) |
Definition at line 19 of file CTBcarray2d.hxx.
|
Default constructor.
An array of type Note, that the default constructor for elementary data types is simply a no-op. Use in these cases the constructor CTBcarray2d(T) to get arrays with a well defined initialization
Definition at line 35 of file CTBcarray2d.icc. |
|
Construct with scalar initialization.
Definition at line 42 of file CTBcarray2d.icc. |
|
Copy constructor.
Definition at line 51 of file CTBcarray2d.icc. |
|
Access row i_row (index checked if CTB__IndexCheck defined).
Definition at line 61 of file CTBcarray2d.icc. |
|
Constant access row i_row (index checked if CTB__IndexCheck defined).
Definition at line 73 of file CTBcarray2d.icc. |
|
Access element (indices checked if CTB__IndexCheck defined).
Definition at line 85 of file CTBcarray2d.icc. |
|
Constant access element (indices checked if CTB__IndexCheck defined).
Definition at line 98 of file CTBcarray2d.icc. |
|
Convert to matrix descriptor.
Definition at line 132 of file CTBcarray2d.icc. |
|
Convert to constant matrix descriptor.
Definition at line 141 of file CTBcarray2d.icc. |
|
Set all elements to the scalar value rhs.
Definition at line 150 of file CTBcarray2d.icc. Referenced by CTBcarray2d().
|
|
Copy values of array rhs.
Definition at line 162 of file CTBcarray2d.icc. |
|
ostream insertion.
Definition at line 179 of file CTBcarray2d.icc. |
|
Definition at line 46 of file CTBcarray2d.hxx. |