如何将 boost::mpl::fold 与 boost::fusion::map 一起使用?

发布于 2024-08-16 12:31:43 字数 870 浏览 9 评论 0原文

当我尝试编译此文件时:

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌化 2024-08-23 12:31:43

我在 http://news.gmane.org/gmane 上问了同样的问题。 comp.lib.boost.user 和 Christopher Schmidt 的答案是正确的:

#include <boost/fusion/mpl.hpp>

应该解决你的问题”

I asked the same question at http://news.gmane.org/gmane.comp.lib.boost.user and the answer from Christopher Schmidt was correct:

#include <boost/fusion/mpl.hpp>

should fix your problem"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文