gpt4 book ai didi

c++ - 如何为 Hana 序列编写 for 循环?

转载 作者:行者123 更新时间:2023-11-30 01:45:25 25 4
gpt4 key购买 nike

我有一个 Boos.Hana 序列,我想将它打印到屏幕上并用逗号分隔。但是逗号只分隔元素,所以我必须检查我是否在最后一个元素。

目前我的 hack 非常糟糕(查看指针并转换为 void*

template<class P, class... Ts>
decltype(auto) operator<<(
std::ostream& os,
boost::hana::tuple<Ts...> const& tpl
){
os << "{";
boost::hana::for_each(
tpl, [&](auto& x){
os << x;
if((void*)&boost::hana::back(tpl) != (void*)&x) os << ", ";
}
);
return os << "}";
}

在 Boost.Fusion 的情况下,它更复杂,因为我使用 fusion 迭代器(boost::fusion::beginboost::fusion::end),但至少我可以比较迭代器。 (bool last = result_of::equal_to<typename result_of::next<First>::type, Last>::value)。

问这个问题的另一种方法是 Hana 中是否有(元)迭代器。

最佳答案

首先,为了回答您的评论,drop_back 确实复制了一份。 Hana 中的所有算法都进行复制并且很急切,如文档所述here .

其次,您可以使用 hana::intersperse在每个元素之间添加一个逗号,结果类似于

template<class P, class... Ts>
decltype(auto) operator<<(
std::ostream& os,
boost::hana::tuple<Ts...> const& tpl
){
os << "{";
boost::hana::for_each(boost::hana::intersperse(tpl, ", "),
[&](auto const& x){
os << x;
});
return os << "}";
}

但是,最好的解决方案可能是使用 experimental::print,它完全符合您的要求:

#include <boost/hana/experimental/printable.hpp>
#include <boost/hana/tuple.hpp>
#include <iostream>

int main() {
auto ts = hana::make_tuple(1, 2, 3);
std::cout << hana::experimental::print(ts);
}

编辑

如果您想使用intersperse 解决方案,但不想复制序列,您可以执行以下操作:

#include <boost/hana.hpp>
#include <functional>
#include <iostream>
namespace hana = boost::hana;

template <class... Ts>
decltype(auto) operator<<(std::ostream& os, hana::tuple<Ts...> const& tpl) {
os << "{";
char const* sep = ", ";
auto refs = hana::transform(tpl, [](auto const& t) { return std::ref(t); });
hana::for_each(hana::intersperse(refs, std::ref(sep)),
[&](auto const& x){
os << x.get();
});
return os << "}";
}

但实际上,您可能应该使用 hana::experimental::print。如果您的用例对性能至关重要并且您想避免创建 std::string,我会首先质疑 std::ostream 的用法。

编辑结束

关于c++ - 如何为 Hana 序列编写 for 循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34702694/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com