如何在异构容器上使用 boost::fusion::transform ?
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 becometemplate<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,fusion::transform 与模板化(或 - 如上所示 - 否则重载)函数运算符一起使用:
并且,有关 Fusion 的其他信息源是示例和测试目录,您可以在其中找到一些技术的演示。
问候哈特穆特
Usually, fusion::transform is used with a templated (or -as shown above- otherwise overloaded) function operator:
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
您是否尝试过重载调用运算符()?
Have you tried overloading the call operator()?