deque_initial_size.hpp

来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 34 行

HPP
34
字号
/*=============================================================================    Copyright (c) 2001-2006 Joel de Guzman    Copyright (c) 2005-2006 Dan Marsden    Distributed under the Boost Software License, Version 1.0. (See accompanying     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)==============================================================================*/#if !defined(BOOST_FUSION_DEQUE_DETAIL_DEQUE_INITIAL_SIZE_26112006_2139)#define BOOST_FUSION_DEQUE_DETAIL_DEQUE_INITIAL_SIZE_26112006_2139#include <boost/preprocessor/repetition/enum_params.hpp>#include <boost/mpl/find.hpp>#include <boost/mpl/begin.hpp>#include <boost/mpl/distance.hpp>#include <boost/mpl/equal_to.hpp>#include <boost/mpl/vector.hpp>namespace boost { namespace fusion {     struct void_;namespace detail {    template<BOOST_PP_ENUM_PARAMS(FUSION_MAX_DEQUE_SIZE, typename T)>    struct deque_initial_size    {        typedef mpl::vector<BOOST_PP_ENUM_PARAMS(FUSION_MAX_DEQUE_SIZE, T)> args;        typedef typename mpl::find<args, void_>::type first_void;        typedef typename mpl::distance<typename mpl::begin<args>::type, first_void>::type type;    };}}}#endif

⌨️ 快捷键说明

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