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