Vector.opAssign - multiple declarations

Function Vector.opAssign

Allows assigning the vector to a static array to set all components of the vector

void opAssign (
  T[] rhs
);

Function Vector.opAssign

Allows assigning the vector to a single value to set all elements of the vector to such a value

void opAssign (
  T rhs
);