operator []= method

void operator []=(
  1. int idx,
  2. double v
)

Implementation

void operator []=(int idx, double v) {
  _buffer[idx] = v;
}