如果我有一个类型列表,如何获得具有该列表的类型作为其可变参数?
换句话说,我想从此开始:
boost::mpl::list<foo, bar, baz, quux>
要:
types<foo, bar, baz, quux>
(订单不重要)
我尝试使用fold
:
typedef boost::mpl::list<foo, bar, baz, quux> type_list;
template <typename... Ts>
struct types {};
template <template <typename... Ts> class List, typename T>
struct add_to_types {
typedef types<T, typename Ts...> type;
};
typedef boost::mpl::fold<
type_list,
types<>,
add_to_types<boost::mpl::_1, boost::mpl::_2>
>::type final_type;
不幸的是,这给了我关于占位符的错误:
error: type/value mismatch at argument 1 in template parameter list for 'template<template<class ... Ts> class List, class T> struct add_to_types'
error: expected a class template, got 'mpl_::_1 {aka mpl_::arg<1>}'
error: template argument 3 is invalid
error: expected initializer before 'final_type'
答案 0 :(得分:3)
问题是types<Ts...>
是一个类而不是类模板。但是,您的add_to_types
期望将类模板作为第一个参数。要使fold
表达式生效,您可以更改add_to_types
以获取两个类参数,并在第一个参数为add_to_types
的情况下专门化types<Ts...>
:
template <typename Seq, typename T>
struct add_to_types;
template <typename T, typename... Ts>
struct add_to_types<types<Ts...>, T>
{
typedef types<T, Ts...> type;
};