operator [] method

double operator [](
  1. int idx
)

Implementation

double operator [](int idx) {
  return _buffer[idx];
}