operator []= method

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

Implementation

void operator []=(int i, double v) => _data[i] = v;