Public Member Functions | |
| int | colIndex (char[] name) |
| Return the column index with this name. | |
| char[] | colName (int index) |
| Return the name of a column. | |
| int | colMaximumLength (int index) |
| Return the maximum length in characters of a column. | |
| int | colMaximumQuotedLength (int index) |
| Return the maximum length in characters of the quoted column. | |
| char[] | cell (int row, int col) |
| Return a cell from the matrix. | |
| char[][] | row (int index) |
| Return a row from the matrix using zero-based indexing. | |
| char[][] | col (int index) |
| Return a cell from the matrix using zero-based indexing. | |
| void | print () |
Public Attributes | |
| uint | rows |
| The number of rows in the matrix. | |
| uint | cols |
| The number of columns in the matrix. | |
| char[][] | names |
| The column names. | |
| char[][][] | data |
| Data in the matrix in [row] [col] order. | |
|
||||||||||||
|
Return a cell from the matrix.
|
|
|
Return a cell from the matrix using zero-based indexing.
|
|
|
Return the column index with this name. If it cannot be found it throws an error. |
|
|
Return the maximum length in characters of a column.
|
|
|
Return the maximum length in characters of the quoted column.
|
|
|
Return the name of a column.
|
|
|
Return a row from the matrix using zero-based indexing.
|
|
|
The number of columns in the matrix.
|
|
|
Data in the matrix in [row] [col] order.
|
|
|
The column names.
|
|
|
The number of rows in the matrix.
|
1.3.2