I already know the stdarg.h
way to have a function with variable arguments in c++ as discussed here for example.
I also know c++11 standard has variadic templates as explained here.
But in both of aforementioned schemes we don't know (and we can't force) argument types in compile time afaik. What I'm looking for is to pass variable arguments of known types to a function. I think this can be done because I read about it here:
Variadic templates, which can also be used to create functions that take variable number of arguments, are often the better choice because they do not impose restrictions on the types of the arguments, do not perform integral and floating-point promotions, and are type safe.
Is it possible? If yes, how can I do this?