operator []= method Null safety
Set the element of the matrix at the index i
.
Implementation
void operator []=(int i, double v) {
_m3storage[i] = v;
}
Set the element of the matrix at the index i
.
void operator []=(int i, double v) {
_m3storage[i] = v;
}