Fusion融合了std_tuple视图,转换为另一个元组

时间:2015-07-26 19:55:57

标签: c++11 tuples boost-fusion

Boost Fusion的设计方式使得大多数转换都是“懒惰的”,因为它们都生成“视图”而不是实际(Fusion)容器(http://www.boost.org/doc/libs/1_58_0/libs/fusion/doc/html/fusion/algorithm.html)。因此,例如要实际反转向量,需要使用转换函数as_vectorhttp://www.boost.org/doc/libs/1_58_0/libs/fusion/doc/html/fusion/container/conversion/functions.html)。

boost::fusion::vector<int, double, std::string> vec;
auto view_rev = boost::fusion::reverse(vec); // view object
auto vec_rev = boost::fusion::as_vector(view_rev);

现在,我想用改编后的std::tuple

来做这件事
#include<boost/fusion/adapted/std_tuple.hpp>
...
std::tuple<int, double, std::string> tup;
auto view_rev = boost::fusion::reverse(tup);
auto tup_rev = boost::fusion::???(view_rev); // type should be of type std::tuple<std::string, double, int>

如何将生成的视图转换回元组?

我希望这个???函数被称为as_std_tuple(类似于boost::fusion::as_vector,但它不存在(还有?)。

有一些用于反转元组的解决方案,在这种情况下,我只想使用Boost Fusion中已有的内容。

1 个答案:

答案 0 :(得分:2)

我不知道将Boost Fusion序列转换为 <tr> <td> <label class="checkbox i-checks col-lg-offset-1 pull-right"><input type="checkbox" ng-model="excelLaunchCheck" ng-checked="defobj.data.excelLaunch == true"><i></i></label> </td> <td>Excel</td> <td>Launch</td> <td> <label class="checkbox i-checks col-lg-offset-1"><input type="checkbox" ng-model="defobj.data.excelLaunch" ng-disabled="!excelLaunchCheck"><i></i></label> </td> </tr> 的任何内置方法,但使用indices trick它可以很容易地实现:

std::tuple

以下是使用template <std::size_t... Is> struct indices {}; template <std::size_t N, std::size_t... Is> struct build_indices : build_indices<N-1, N-1, Is...> {}; template <std::size_t... Is> struct build_indices<0, Is...> : indices<Is...> {}; template<typename Sequence, std::size_t ...Is> auto as_std_tuple_impl(const Sequence& s, indices<Is...>&&) -> decltype(std::tie(boost::fusion::at_c<Is>(s)...)) { return std::tie(boost::fusion::at_c<Is>(s)...); } template <typename Sequence, typename Indices = build_indices<boost::fusion::result_of::size<Sequence>::value>> auto as_std_tuple(const Sequence& s) -> decltype(as_std_tuple_impl(s, Indices())) { return as_std_tuple_impl(s, Indices()); } 反转已调整std::tuple并将其转换回boost::fusion::reverse并打印两个元组的完整示例:

std::tuple

<强>输出:

#include <tuple>
#include <utility>

#include<boost/fusion/adapted/std_tuple.hpp>
#include <boost/fusion/algorithm/transformation/reverse.hpp>
#include <boost/fusion/include/reverse.hpp>

#include <boost/fusion/sequence/intrinsic/size.hpp>
#include <boost/fusion/include/size.hpp>

#include <iostream>

template <std::size_t... Is>
struct indices {};

template <std::size_t N, std::size_t... Is>
struct build_indices
  : build_indices<N-1, N-1, Is...> {};

template <std::size_t... Is>
struct build_indices<0, Is...> : indices<Is...> {};

template<typename Sequence, std::size_t ...Is>
auto as_std_tuple_impl(const Sequence& s, indices<Is...>&&) -> decltype(std::tie(boost::fusion::at_c<Is>(s)...))
{
    return std::tie(boost::fusion::at_c<Is>(s)...);
}

template <typename Sequence, typename Indices = build_indices<boost::fusion::result_of::size<Sequence>::value>>
auto as_std_tuple(const Sequence& s) -> decltype(as_std_tuple_impl(s, Indices()))
{
    return as_std_tuple_impl(s, Indices());
}


template<class Tuple, std::size_t N>
struct TuplePrinter
{
    static void print(const Tuple& t) 
    {
        TuplePrinter<Tuple, N-1>::print(t);
        std::cout << ", " << std::get<N-1>(t);
    }
};

template<class Tuple>
struct TuplePrinter<Tuple, 1> 
{
    static void print(const Tuple& t) 
    {
        std::cout << std::get<0>(t);
    }
};

template<class... Args>
void print(const std::tuple<Args...>& t) 
{
    std::cout << "(";
    TuplePrinter<decltype(t), sizeof...(Args)>::print(t);
    std::cout << ")\n";
}

int main()
{
    std::tuple<int, double, std::string> tup(1,2.5,"hello");
    auto view_rev = boost::fusion::reverse(tup);
    auto reversed_tup = as_std_tuple(view_rev);

    print(tup);
    print(reversed_tup);
    return 0;
}

Live example on ideone