Struct FortranArray2D

A simple, lightweight, two-dimensional base-1 array.

struct FortranArray2D(T) ;

Fields

NameTypeDescription
_cols size_t
_length size_t
_ptr T*
_ptrm1 T*
_rows size_t

Properties

NameTypeDescription
cols[get] size_tThe number of rows and columns in the array.
length[get] size_tThe number of elements in the array.
ptr[get] T*A pointer to the first element of the array.
rows[get] size_tThe number of rows and columns in the array.

Methods

NameDescription
boundsCheck