variadic_function_synthesis.cpp

来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 64 行

CPP
64
字号
// (C) Copyright Tobias Schwinger//// Use modification and distribution are subject to the boost Software License,// Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).//------------------------------------------------------------------------------#include <boost/mpl/assert.hpp>#include <boost/mpl/vector.hpp>#include <boost/type_traits/is_same.hpp>#include <boost/function_types/function_type.hpp>#include <boost/function_types/function_pointer.hpp>#include <boost/function_types/function_reference.hpp>#include <boost/function_types/member_function_pointer.hpp>namespace ft = boost::function_types;namespace mpl = boost::mpl;using boost::is_same;class C;typedef int expected_v_1(...);typedef int expected_nv_1();typedef int (C::*expected_v_2)(...);typedef int (C::*expected_nv_2)();BOOST_MPL_ASSERT(( is_same<     ft::function_type<mpl::vector<int>, ft::variadic>::type, expected_v_1 > ));BOOST_MPL_ASSERT(( is_same<     ft::function_type<mpl::vector<int>, ft::non_variadic>::type, expected_nv_1 > ));BOOST_MPL_ASSERT(( is_same<     ft::function_pointer<mpl::vector<int>, ft::variadic>::type, expected_v_1 * > ));BOOST_MPL_ASSERT(( is_same<     ft::function_pointer<mpl::vector<int>, ft::non_variadic>::type  , expected_nv_1 * > ));BOOST_MPL_ASSERT(( is_same<    ft::function_reference<mpl::vector<int>, ft::variadic>::type, expected_v_1 &> ));BOOST_MPL_ASSERT(( is_same<    ft::function_reference<mpl::vector<int>, ft::non_variadic>::type  , expected_nv_1 &> ));BOOST_MPL_ASSERT(( is_same<     ft::member_function_pointer<mpl::vector<int,C>, ft::variadic>::type  , expected_v_2 > ));BOOST_MPL_ASSERT(( is_same<     ft::member_function_pointer<mpl::vector<int,C>, ft::non_variadic>::type  , expected_nv_2 > ));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?