Copy the values of one vector to another without creating a new object.
Source vector
Target vector
Target vector as a copy of source
copy([3, 4], [2, 2]); // Returns: [3, 4] Copy
copy([3, 4], [2, 2]); // Returns: [3, 4]
Generated using TypeDoc
Copy the values of one vector to another without creating a new object.