我一直在使用自己编写的 lite mpl,但我需要它更健壮。目前,我正在考虑使用 boost::hana,它似乎拥有我需要的一切,但有一个例外:我看不到任何方法可以将 hana::tuple 中的类型更改为这些类型的容器。
例如,这就是我用来将类型的 std::tuple 转换为这些类型的 std::vectors 的 std::tuple 的方法:
#include <vector>
#include <tuple>
template<typename... Ts>
struct Typelist{
};
// Declare List
template<class> class List;
// Specialize it, in order to drill down into the template parameters.
template<template<typename...Args> class t, typename ...Ts>
struct List<t<Ts...>> {
using type = std::tuple<std::vector<Ts>...>;
};
// Sample Typelist
struct A{};
struct B{};
struct C{};
using myStructs = Typelist<A,B,C>;
// And, the tuple of vectors:
List<myStructs>::type my_tuple;
// Proof
int main()
{
std::vector<A> &a_ref=std::get<0>(my_tuple);
std::vector<B> &b_ref=std::get<1>(my_tuple);
std::vector<C> &c_ref=std::get<2>(my_tuple);
return 0;
}
是否有我忽略的 boost::hana 变体?或者我是否需要把它带过来并改变它以使用 hana::tuple 而不是 std::tuple?