如何在异构容器上使用 boost::fusion::transform ?

发布于 2024-09-01 08:26:26 字数 749 浏览 8 评论 0原文

Boost.org 的 example 如下:

struct triple
{
    typedef int result_type;

    int operator()(int t) const
    {
        return t * 3;
    };
};
// ...
assert(transform(make_vector(1,2,3), triple()) == make_vector(3,6,9));

但我还没有“明白”。他们的示例中的向量包含所有相同类型的元素,但使用融合的一个要点是异构类型的容器。如果他们使用 make_vector(1, 'a', "howdy") 会怎样?

int 运算符()(int t)
需要成为
模板<类型名称T>夯; ?

但我该如何编写 result_type 呢 模板<类型名称T> typedef T& result_type 当然不是有效的语法,即使是有效的语法也没有意义,因为它与函数无关。

Boost.org's example given for fusion::transform is as follows:

struct triple
{
    typedef int result_type;

    int operator()(int t) const
    {
        return t * 3;
    };
};
// ...
assert(transform(make_vector(1,2,3), triple()) == make_vector(3,6,9));

Yet I'm not "getting it." The vector in their example contains elements all of the same type, but a major point of using fusion is containers of heterogeneous types. What if they had used make_vector(1, 'a', "howdy") instead?

int operator()(int t)
would need to become
template<typename T> T& operator()(T& const t)

But how would I write the result_type? template<typename T> typedef T& result_type certainly isn't valid syntax, and it wouldn't make sense even if it was, because it's not tied to the function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

萌辣 2024-09-08 08:26:26

通常,fusion::transform 与模板化(或 - 如上所示 - 否则重载)函数运算符一起使用:

struct triple 
{ 
    template <typename Sig>
    struct result;

    template <typename This, typename T>
    struct result<This(T)>
    {
        typedef /*...figure out return type...*/ type;
    };

    template <typename T> 
    typename result<triple(T)>::type 
    operator()(T t) const 
    { 
        return 3*t;    // relies on existing operator*() for 'T'
    }
}; 

并且,有关 Fusion 的其他信息源是示例和测试目录,您可以在其中找到一些技术的演示。

问候哈特穆特

Usually, fusion::transform is used with a templated (or -as shown above- otherwise overloaded) function operator:

struct triple 
{ 
    template <typename Sig>
    struct result;

    template <typename This, typename T>
    struct result<This(T)>
    {
        typedef /*...figure out return type...*/ type;
    };

    template <typename T> 
    typename result<triple(T)>::type 
    operator()(T t) const 
    { 
        return 3*t;    // relies on existing operator*() for 'T'
    }
}; 

And, additional sources of information about Fusion are the examples and the test directory where you can find demonstrations of some of the techniques.

Regards Hartmut

溺孤伤于心 2024-09-08 08:26:26

您是否尝试过重载调用运算符()?

struct triple
{

    int operator()(int t) const
    {
        return t * 3;
    };
    int operator()(string t) const
    {
        return t + t + t;
    };
};

Have you tried overloading the call operator()?

struct triple
{

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