set method

void set(
  1. int x,
  2. int y,
  3. T v
)

Implementation

void set(int x, int y, T v) => _storage[getIndex(x, y)] = v;