I\'m trying to understand some code in the D language runtime. It seems like there are separate functions for the following two things:
array1[] += scalar *
I guess the difference is just in the function prototypes - one is (double, double[]) and the other is (double[], double). But the result should be the same either way.
(double, double[])
(double[], double)