迭代boost :: hana :: tuple

时间:2016-10-04 14:09:00

标签: c++ boost boost-hana

我找不到用hana::for_each迭代元组来访问真实对象的方法。

struct A {
  std::string name;
}

struct B {
  std::string name;
}

using type_t = decltype(boost::hana::tuple_t<A, B>);
type_t names;

boost::hana::for_each(names, [&](const auto& a) {
      std::cout << a.name << std::endl;
    });

a的类型似乎是hana::tuple_impl<...>,并且似乎无法转换为其基础类型decltype(std::decay_t<a>)::type

我基本上想要迭代一个具有相同接口但包含不同值的模板化对象(容器)列表。实现这一目标的更好方法是受欢迎的。

1 个答案:

答案 0 :(得分:9)

tuple_t代表hana::type s的元组。您需要tuple普通对象,这只是tuple

boost::hana::tuple<A, B> names;
boost::hana::for_each(names, [&](const auto& x) {
    std::cout << x.name << std::endl;
});