From: Larry Evans (cppljevans_at_[hidden])
Date: 2005-03-02 15:14:15


Would it be possible to add:

template<typename Application>
struct unpack_apply
{
...
};

such that:

   is_same
    < unpack_apply<f<a0,a2,...,an> >::type
    , vector<a0,a2,...,an>
>

to mpl? Maybe a better name would be get_args, but
since it's so closely related to unpack_args, I thought
maybe unpack_apply could be considered OK.