I want to do a.'*b
where a and b are Vector{Complex}, but this returns an Array, not a
constant, and probably does unneccesary memory allocation for when
constructing a.'
If it was
a'*b
I can just replace it with dot(a,b). Is there an equivalent that doesn't
conjugate the first argument?
