3

例如,我有一个元组

tuple<int, float, char> t(0, 1.1, 'c');

和一个模板函数

template<class T> void foo(T e);

我想用函数循环元组元素,如何实现它,比如使用 boost::mpl::for_each 来实现以下内容?

template<class Tuple>
void loopFoo(Tuple t)
{
    foo<std::tuple_element<0, Tuple>::type>(std::get<0>(t));
    foo<std::tuple_element<1, Tuple>::type>(std::get<1>(t));
    foo<std::tuple_element<2, Tuple>::type>(std::get<2>(t));
    ...
}
4

1 回答 1

5

您可以像这样使用 boost::fusion::for_each :

#include <boost/fusion/algorithm/iteration/for_each.hpp>
#include <boost/fusion/adapted/std_tuple.hpp>

struct LoopFoo
{
  template <typename T> // overload op() to deal with the types
  void operator()(T const &t) const
  {
    /* do things to t */
  }
};

int main()
{
  auto t = std::make_tuple(0, 1.1, 'c');
  LoopFoo looper;
  boost::fusion::for_each(t, looper);
}
于 2013-09-29T06:38:18.247 回答