LevelS C++ support library
3.83
|
#include <arr.h>
Public Member Functions | |
arr2b () | |
arr2b (tsize sz1, tsize sz2) | |
arr2b (const arr2b &orig) | |
~arr2b () | |
tsize | size1 () const |
tsize | size2 () const |
tsize | size () const |
void | alloc (tsize sz1, tsize sz2) |
void | dealloc () |
void | fill (const T &val) |
arr2b & | operator= (const arr2b &orig) |
template<typename T2 > | |
T * | operator[] (T2 n) |
template<typename T2 > | |
const T * | operator[] (T2 n) const |
T ** | p0 () |
Two-dimensional array type. An entry is located by double dereferencing, i.e. via an array of pointers. The indices start at zero.
|
inline |
|
inline |
|
inline |