operator [] method

double operator [](
  1. int i
)

Returns the element at the given index in row major order.

Implementation

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