Performs an assign operation on the vector, modifying it.
a number, a vector or an array with the same size
auto v = vector(1, 2); v += 4; v *= [0, 2]; assert(v == vector(0, 12));
See Implementation
Performs an assign operation on the vector, modifying it.