is it possible to construct variadic arguments for function by overloading operator comma of the argument? i want to see an example how to do so.., maybe something like this
No, it isn't. The list of values separated by the comma operator will be evaluated as a single value. For example:
1,2,3
will result in a single value, 3.