entry method Null safety
Value at row
, col
.
Implementation
double entry(int row, int col) {
assert((row >= 0) && (row < dimension));
assert((col >= 0) && (col < dimension));
return _m3storage[index(row, col)];
}
Value at row
, col
.
double entry(int row, int col) {
assert((row >= 0) && (row < dimension));
assert((col >= 0) && (col < dimension));
return _m3storage[index(row, col)];
}