我找不到用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
。
我基本上想要迭代一个具有相同接口但包含不同值的模板化对象(容器)列表。实现这一目标的更好方法是受欢迎的。
答案 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;
});