如何将 boost::mpl::fold 与 boost::fusion::map 一起使用?
当我尝试编译此文件时:
#include <boost/fusion/container/map.hpp>
#include <boost/mpl/fold.hpp>
int main(int argc, char** argv)
{
typedef boost::fusion::map
<
boost::fusion::pair<int, const char*>,
boost::fusion::pair<long, char>
> FuMap;
FuMap fuMap("hello", 'w');
unsigned val = boost::mpl::fold
<
FuMap, boost::mpl::int_<0>, boost::mpl::next<boost::mpl::_1>
>::type::value;
}
我收到以下错误:
"...boost/mpl/begin_end.hpp", line 35: Error, nofieldfnd:
apply is not a member of
boost::mpl::begin_impl<boost::fusion::fusion_sequence_tag>.
来自 fusion 文档:“Fusion 提供全面兼容性 与 MPL。融合序列完全符合MPL序列和MPL 序列与 Fusion 完全兼容。您可以使用 Fusion 如果您只想在类型上工作,请使用 MPL 上的序列。”
当我传递 boost::mpl::map 时,它可以工作。
有任何线索吗?
When I try to compile this:
#include <boost/fusion/container/map.hpp>
#include <boost/mpl/fold.hpp>
int main(int argc, char** argv)
{
typedef boost::fusion::map
<
boost::fusion::pair<int, const char*>,
boost::fusion::pair<long, char>
> FuMap;
FuMap fuMap("hello", 'w');
unsigned val = boost::mpl::fold
<
FuMap, boost::mpl::int_<0>, boost::mpl::next<boost::mpl::_1>
>::type::value;
}
I get the following error:
"...boost/mpl/begin_end.hpp", line 35: Error, nofieldfnd:
apply is not a member of
boost::mpl::begin_impl<boost::fusion::fusion_sequence_tag>.
From the fusion documentation: "Fusion provides full round compatibility
with MPL. Fusion sequences are fully conforming MPL sequences and MPL
sequences are fully compatible with Fusion. You can work with Fusion
sequences on MPL if you wish to work solely on types."
When I pass a boost::mpl::map it works.
Any clues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 http://news.gmane.org/gmane 上问了同样的问题。 comp.lib.boost.user 和 Christopher Schmidt 的答案是正确的:
应该解决你的问题”
I asked the same question at http://news.gmane.org/gmane.comp.lib.boost.user and the answer from Christopher Schmidt was correct:
should fix your problem"