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

link|improve this question

50% accept rate
2  
There is a nice implementation of a make_indice utility here: http://preney.ca but I'm having a hard time figuring out how I can use it with boost::arg<> – Blizter Nov 9 '11 at 14:35
That link was a great read, and the apply( Func, std::tuple ) function may come in handy someday. – deft_code Nov 11 '11 at 1:24
I see typename... Args. Are you using C++11? – KennyTM Nov 17 '11 at 20:12
feedback

1 Answer

Maybe you should explain what you want to do in a little bit more detail. If you're just looking for a solution to handle three different signatures which differ by their parameter types, you could do something like that:

template<typename signature>
struct callable;

template<typename P0, typename P1, typename P2>
struct callable<void (P0, P1, P2)>
{
    void bind()
    {
        boost::bind(&callable::operator(), this, _1, _2, _3);
    }

    void operator()(P0, P1, P2) {}
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.