Vectorizing power function

It would make it faster in the pow(real, vector) because the first parameter is shared and we can cut down on the expression graph size, but there’s no speed gain to be had in the pow(vector, vector) case.

It looks like Rayleigh is done with the pow(vector, vector) versions, but not the broadcasting ones that take pow(real, vector) or pow(vector, real).