at method

Value at(
  1. int row,
  2. int col
)

Implementation

Value at(int row, int col) {
  return data!.values[row * _cols + col];
}