6

c ++ 0xラムダのシグネチャ、結果タイプ、パラメータータイプをBoost.MPLシーケンスとして推測する方法はありますboost::mpl::vectorか?たとえば、ラムダの場合

[]( float a, int b ) -> void { std::cout << a << b << std::endl; }

取得したいのですがboost::mpl::vector<void,float,int>

4

1 に答える 1

6

「クロージャオブジェクト」であるC++0xラムダはファンクターです。したがって、boost.Boost.FunctionTypesを使用してそのを分解できますoperator()

例:

#include <boost/function_types/parameter_types.hpp>

#include <boost/mpl/at.hpp>
#include <boost/mpl/int.hpp>

int main()
{
    int x = 1;
    auto f = [x](char a, short b, int c){ return x; };

    typedef decltype(f) lambda_t;
    typedef boost::function_types::parameter_types<
        decltype(&lambda_t::operator())>::type args_t;
    // we can use boost::mpl::identity<decltype(f)>::type instead of lambda_t

    static_assert(sizeof(boost::mpl::at<args_t, boost::mpl::int_<1>>::type) == 1, "");
}
于 2010-12-19T11:18:12.007 に答える