I am overloading + in a simple effort to combine two number sequences; for example:
a=1,2,3
b=4,5,6
The output that I want is to have a third sequence combine them like this:
c=1,2,3,4,5,6
When I try to do this, I receive error C2664 which is saying cannot convert number type a to number type b.
Any ideas?
a=1,2,3
b=4,5,6
The output that I want is to have a third sequence combine them like this:
c=1,2,3,4,5,6
When I try to do this, I receive error C2664 which is saying cannot convert number type a to number type b.
Any ideas?