operator [] method

double operator [](
  1. int index
)

Implementation

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