Assign result of applying operator with other to elements.
Vec3 v = [1, 2, 3]; v += Vec2(1, 2); assert(v == [2, 4, 3]); v += Vec4(1, 2, 3, 4); assert(v == [3, 6, 6]);
See Implementation
Assign result of applying operator with other to elements.