I've been overloading some methods for a template class.
This means I can write my code in this way.
myClass var3=var2+4;
Is it possible to do it the otherway around like
myClass var3=4+var2;
I know that the end result will be the same,
I was just wondering.
thanks