In a function template, I'd like to call a function, or function object differently, depending on its arity (how many arguments it takes). In pseudocode:
if arity(f) == 1:
f(x)
if arity(f) == 2:
f(x, y)
if arity(f) == 3:
f(x, y, z)
How can this be done in C++?
Edit To clarify the difficulty: f(x, y, z)
won't compile if f
only takes 2 arguments, and vice versa, f(x, y)
won't compile when f
needs 3 arguments.
With C++11:
Otherwise you might lookup boost::function: http://www.boost.org/doc/libs/1_55_0b1/doc/html/function.html