size_type.hpp

来自「CGAL is a collaborative effort of severa」· HPP 代码 · 共 119 行

HPP
119
字号
// Boost.Range library////  Copyright Thorsten Ottosen 2003-2004. Use, modification and//  distribution is subject to 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)//// For more information, see http://www.boost.org/libs/range///#ifndef BOOST_RANGE_DETAIL_SIZE_TYPE_HPP#define BOOST_RANGE_DETAIL_SIZE_TYPE_HPP#include <boost/range/detail/common.hpp>//////////////////////////////////////////////////////////////////////////////// missing partial specialization  workaround.//////////////////////////////////////////////////////////////////////////////namespace boost {    namespace range_detail     {                template< typename T >        struct range_size_type_;        template<>        struct range_size_type_<std_container_>        {            template< typename C >            struct pts            {                typedef BOOST_DEDUCED_TYPENAME C::size_type type;            };        };        template<>        struct range_size_type_<std_pair_>        {            template< typename P >            struct pts            {                typedef std::size_t type;            };        };        template<>        struct range_size_type_<array_>        {            template< typename A >            struct pts            {                typedef std::size_t type;            };        };        template<>        struct range_size_type_<char_array_>        {             template< typename A >            struct pts            {                typedef std::size_t type;            };        };        template<>        struct range_size_type_<char_ptr_>        {            template< typename S >            struct pts            {                typedef std::size_t type;            };                 };                template<>        struct range_size_type_<const_char_ptr_>        {            template< typename S >            struct pts            {                typedef std::size_t type;            };                 };                template<>        struct range_size_type_<wchar_t_ptr_>        {            template< typename S >            struct pts            {                typedef std::size_t type;            };                 };                template<>        struct range_size_type_<const_wchar_t_ptr_>        {            template< typename S >            struct pts            {                typedef std::size_t type;            };                 };      }         template< typename C >    class range_size    {        typedef BOOST_DEDUCED_TYPENAME range_detail::range<C>::type c_type;    public:        typedef BOOST_DEDUCED_TYPENAME range_detail::range_size_type_<c_type>::BOOST_NESTED_TEMPLATE pts<C>::type type;     };}#endif

⌨️ 快捷键说明

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