operator [] method

double operator [](
  1. int i
)

Access the element of the matrix at the index i.

Implementation

double operator [](int i) => _m3storage[i];