operator [] method

double operator [](
  1. int i
)

Access the component of the vector at the index i.

Implementation

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