Sets all vector values in one action.
{ // Creating vector auto v = Vector3i (1, 2, 3); // Change data in one action v.set (3, 2, 1); assert (v[0] == 3 && v[1] == 2 && v[2] == 1);
See Implementation
Sets all vector values in one action.