// 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_VC6_SIZE_HPP #define BOOST_RANGE_DETAIL_VC6_SIZE_HPP #include #include #include #include #include namespace boost { namespace range_detail { template< typename T > struct range_size_; struct range_size_std_container_ { template< typename C > static BOOST_RANGE_DEDUCED_TYPENAME C::size_type fun( const C& c ) { return c.size(); }; }; ////////////////////////////////////////////////////////////////////// // default ////////////////////////////////////////////////////////////////////// template<> struct range_size_ { template< typename C > struct inner { static BOOST_RANGE_DEDUCED_TYPENAME C::size_type fun( const C& c ) { return range_size_std_container_::fun(c.size()); }; }; }; ////////////////////////////////////////////////////////////////////// // pair ////////////////////////////////////////////////////////////////////// struct range_size_std_pair_ { template< typename P > static BOOST_RANGE_DEDUCED_TYPENAME range_size

::type fun( const P& p ) { return std::distance( p.first, p.second ); } }; template<> struct range_size_ { template< typename P > struct inner { static BOOST_RANGE_DEDUCED_TYPENAME range_size

::type fun( const P& p ) { return range_size_std_pair_::fun( p ); } }; }; ////////////////////////////////////////////////////////////////////// // array ////////////////////////////////////////////////////////////////////// struct range_size_array_ { template static std::size_t fun(T& t) { return remove_extent::size; } }; template<> struct range_size_ { template struct inner { static std::size_t fun(T& t) { return remove_extent::size; } }; }; struct range_size_char_array_ { template static std::size_t fun(T& t) { return sizeof(T) / sizeof(T[0]); } }; template<> struct range_size_ { template struct inner { static std::size_t fun(T& t) { range_size_char_array_::fun(t); } }; }; struct range_size_wchar_t_array_ { template static std::size_t fun(T& t) { return sizeof(T) / sizeof(T[0]); } }; template<> struct range_size_ { template struct inner { static std::size_t fun(T& t) { range_size_wchar_t_array_::fun(t); } }; }; ////////////////////////////////////////////////////////////////////// // string ////////////////////////////////////////////////////////////////////// template<> struct range_size_ { template struct inner { static std::size_t fun( const char* s ) { return boost::range_detail::str_size( s ); } }; }; template<> struct range_size_ { template struct inner { static std::size_t fun( const char* s ) { return boost::range_detail::str_size( s ); } }; }; template<> struct range_size_ { template struct inner { static std::size_t fun( const wchar_t* s ) { return boost::range_detail::str_size( s ); } }; }; template<> struct range_size_ { template struct inner { static std::size_t fun( const wchar_t* s ) { return boost::range_detail::str_size( s ); } }; }; } // namespace 'range_detail' template< typename C > BOOST_RANGE_DEDUCED_TYPENAME range_size::type size( const C& c ) { return range_detail::range_size_::type>::inner::fun( c ); } } // namespace 'boost' #endif