使用boost mpl lambda和variadic模板类

时间:2016-12-07 00:05:01

标签: c++ boost template-meta-programming variadic boost-mpl

我很难理解为什么下面的简单程序不会编译。我有一个可变参数模板类(下面是my_type),我想用它来转换mpl矢量。以下片段导致编译错误" /boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp:38:19:' apply'按照'模板'关键字不是指模板"。

#include <boost/mpl/vector.hpp>
#include <boost/mpl/transform.hpp>

template <class... T>
struct my_type{};

using namespace boost::mpl;

using test_type = vector<int, double>;

// expected result is vector< my_type<int>, my_type<double> >
using result_type = transform< test_type, my_type<_> >::type; 

int main() {

}

使my_type获取单个模板参数工作正常,但我想了解为什么可变参数版本不起作用。提前谢谢!

1 个答案:

答案 0 :(得分:0)

变换所期望的第二个参数是一个你没有通过的一元操作。

在您的情况下,my_type不是mpl所期望的metafunction,因为它正在使用可变参数列表。

最简单的情况下,metafunction会显示type typedef或ststic bool value。例如:

template <typename T>
struct add_pointer {
    using type = T*;
};

请注意add_pointer如何转换提供的模板参数。这是unary操作的示例,因为它只需要一个模板参数T

在您的示例中,my_type纯粹是一种类型,不能用作元函数或操作,因为它不符合metafunction元函数所要求的transform条件。有一个type字段来表示转换后的类型。

在某些情况下,简单的temmplate类型会转换为metafunction,如下面Detailed Reasoning部分所述。

文档参考:http://www.boost.org/doc/libs/1_31_0/libs/mpl/doc/ref/Reference/transform.html

代码:

#include <boost/mpl/vector.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/mpl/equal.hpp>

#include <type_traits>
#include <typeindex>
#include <iostream>

template <class... T>
struct my_type{};

using namespace boost::mpl;

using test_type = vector<int, double>;

template <typename T>
struct add_my_type {
    using type = my_type<T>;
};

using result_type = typename transform< test_type, add_my_type<_1> >::type; 

int main() {
    static_assert (equal<result_type, vector< my_type<int>, my_type<double> >>::value, "Nope!!");

    std::cout << typeid(result_type).name() << std::endl; 
}

LIVE DEMO

详细原因

上面解释的原因非常简短,应该足以回答这个问题。但是我们尽可能地深入细节。

免责声明:我不是boost :: mpl。

的专家

根据OP下面的评论,如果我们将my_type更改为:

,则原始代码有效
template <class T>
struct my_type{};

但这与我之前提到的不一样,即operation需要一个type标识符。所以,让我们看看,mpl在幕后做了什么:

struct transform看起来有点像:

template<  
  typename Seq1 = mpl::na
, typename Seq2OrOperation = mpl::na      
, typename OperationOrInserter = mpl::na          
, typename Inserter = mpl::na             
>
struct transform {
  boost::mpl::eval_if<
        boost::mpl::or_<
            boost::mpl::is_na<OperationOrInserter>, 
            boost::mpl::is_lambda_expression<my_type<mpl_::arg<1> > >,
            boost::mpl::not_<boost::mpl::is_sequence<my_type<mpl_::arg<1> > > >,
            mpl_::bool_<false>, 
            mpl_::bool_<false> 
        >,
        boost::mpl::transform1<
            boost::mpl::vector<int, double>, 
            my_type<mpl_::arg<1>>, 
            mpl_::na
        >, 
        boost::mpl::transform2<boost::mpl::vector<int, double>,
            my_type<mpl_::arg<1> >, 
            mpl_::na, mpl_::na> 
        >

};

这里要看的重要部分是is_lambda_expression元函数,它基本上会检查您的Operation是否符合metafunction的要求。

在应用了一些重的宏和模板机制和专业化之后,上面的检查综合了struct:

template<
      typename IsLE, typename Tag
    , template< typename P1 > class F
    , typename L1
    >
struct le_result1
{
    typedef F<
          typename L1::type
        > result_;

    typedef result_ type;
};

此处,Fmy_typeL1placeholder。所以,实质上上面的结构只不过是我在初始响应中显示的add_my_type

如果到目前为止我是正确的,le_result1是您operation上执行的sequence