// 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_; ////////////////////////////////////////////////////////////////////// // default ////////////////////////////////////////////////////////////////////// template<> struct range_size_ { template< typename C > struct inner { static BOOST_RANGE_DEDUCED_TYPENAME C::size_type fun( const C& c ) { return c.size(); }; }; }; ////////////////////////////////////////////////////////////////////// // pair ////////////////////////////////////////////////////////////////////// template<> struct range_size_ { template< typename P > struct inner { static BOOST_RANGE_DEDUCED_TYPENAME range_size

::type fun( const P& p ) { return std::distance( p.first, p.second ); } }; }; ////////////////////////////////////////////////////////////////////// // array ////////////////////////////////////////////////////////////////////// template<> struct range_size_ { template struct inner { 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 sizeof(T) / sizeof(T[0]); } }; }; template<> struct range_size_ { template struct inner { static std::size_t fun(T& t) { return sizeof(T) / sizeof(T[0]); } }; }; ////////////////////////////////////////////////////////////////////// // 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