Struct FortranArray2D
A simple, lightweight, two-dimensional base-1 array.
struct FortranArray2D(T)
;
Fields
| Name | Type | Description |
|---|---|---|
_cols
|
size_t | |
_length
|
size_t | |
_ptr
|
T* | |
_ptrm1
|
T* | |
_rows
|
size_t |
Properties
| Name | Type | Description |
|---|---|---|
cols[get]
|
size_t | The number of rows and columns in the array. |
length[get]
|
size_t | The number of elements in the array. |
ptr[get]
|
T* | A pointer to the first element of the array. |
rows[get]
|
size_t | The number of rows and columns in the array. |
Methods
| Name | Description |
|---|---|
boundsCheck
|