有没有办法在没有预处理器的情况下做到这一点?
#include <boost/hana.hpp>
#include <boost/preprocessor.hpp>
namespace ba = boost::hana;
template <typename Arguments, unsigned ArgCount>
struct FunctionSigCreatorImpl {};
template <typename Arguments>
struct FunctionSigCreator : FunctionSigCreatorImpl<Arguments, decltype(ba::length(Arguments{}))::value>
{
};
#define DEF_ARG(z, n, data) \
typename decltype(+ba::at(Arguments{}, ba::int_c<n>))::type
#define DEF_FUN_CREATOR(z, argCount, data) \
template <typename Arguments> \
struct FunctionSigCreatorImpl<Arguments, argCount> \
{ \
using Type = void(BOOST_PP_ENUM(argCount, DEF_ARG,)); \
};
BOOST_PP_REPEAT(19, DEF_FUN_CREATOR,)
int main(int argc, char **argv)
{
using MyTuple = ba::tuple<ba::type<int>, ba::type<long>, ba::type<char>>;
static_assert(std::is_same<typename FunctionSigCreator<MyTuple>::Type, void(int, long, char)>::value);
return 0;
}