Is there any trick to get the type of the passed in arguments without explicitly stating the type in a string as one of the argument?
To add on the post just now, basically what I want to do is
if is type A
call functionA
else if is type B
call functionB.
Could variadic template solve that?
Thanks.