I want to know if it is possible to use the number of arguments passed to a variadic template as placeholder in a boost::bind call.
Something like this:
template <typename ... Args>
boost::bind(&function, this, anArg, _1)); //If Args count equals 1
boost::bind(&function, this, anArg, _1, _2)); //If Args count equals 2
boost::bind(&function, this, anArg, _1, _2, _3)); //If Args count equals 3
Is this possible?
Thank you
apply( Func, std::tuple )function may come in handy someday. – deft_code Nov 11 '11 at 1:24typename... Args. Are you using C++11? – KennyTM Nov 17 '11 at 20:12