to_sequence.hpp
来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 48 行
HPP
48 行
// (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).//------------------------------------------------------------------------------#ifndef BOOST_FT_DETAIL_TO_SEQUENCE_HPP_INCLUDED#define BOOST_FT_DETAIL_TO_SEQUENCE_HPP_INCLUDED#include <boost/mpl/eval_if.hpp>#include <boost/mpl/identity.hpp>#include <boost/mpl/is_sequence.hpp>#include <boost/mpl/placeholders.hpp>#include <boost/type_traits/add_reference.hpp>#include <boost/function_types/is_callable_builtin.hpp>namespace boost { namespace function_types { namespace detail {// wrap first arguments in components, if callable builtin typetemplate<typename T>struct to_sequence{ typedef typename mpl::eval_if < is_callable_builtin<T> , to_sequence< components<T> > , mpl::identity< T > >::type type;};#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION// reduce template instantiations, if possibletemplate<typename T, typename U>struct to_sequence< components<T,U> > { typedef typename components<T,U>::types type;};#endif} } } // namespace ::boost::function_types::detail#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?