operator []= method

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

Implementation

void operator []=(int i, double x) => _els[i] = x;