// Boost.Range library // // Copyright Neil Groves 2009. // 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_SUB_RANGE_HPP #define BOOST_RANGE_SUB_RANGE_HPP #include #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1500)) #pragma warning( push ) #pragma warning( disable : 4996 ) #endif #include #include #include #include #include #include #include #include #include namespace boost { template< class ForwardRange > class sub_range : public iterator_range< BOOST_DEDUCED_TYPENAME range_iterator::type > { typedef BOOST_DEDUCED_TYPENAME range_iterator::type iterator_t; typedef iterator_range< iterator_t > base; typedef BOOST_DEDUCED_TYPENAME base::impl impl; public: typedef BOOST_DEDUCED_TYPENAME range_value::type value_type; typedef BOOST_DEDUCED_TYPENAME range_iterator::type iterator; typedef BOOST_DEDUCED_TYPENAME range_iterator::type const_iterator; typedef BOOST_DEDUCED_TYPENAME range_difference::type difference_type; typedef BOOST_DEDUCED_TYPENAME range_size::type size_type; typedef BOOST_DEDUCED_TYPENAME base::reference reference; private: template struct is_compatible_range : is_convertible< BOOST_DEDUCED_TYPENAME mpl::eval_if< has_range_iterator, range_iterator, mpl::identity >::type, iterator > { }; public: sub_range() { } #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1500) ) sub_range( const sub_range& r ) : base( static_cast( r ) ) { } #endif template< class ForwardRange2 > sub_range( ForwardRange2& r, BOOST_DEDUCED_TYPENAME enable_if< is_compatible_range >::type* = 0 ) : #if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 ) base( impl::adl_begin( r ), impl::adl_end( r ) ) #else base( r ) #endif { } template< class ForwardRange2 > sub_range( const ForwardRange2& r, BOOST_DEDUCED_TYPENAME enable_if< is_compatible_range >::type* = 0 ) : #if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 ) base( impl::adl_begin( r ), impl::adl_end( r ) ) #else base( r ) #endif { } template< class Iter > sub_range( Iter first, Iter last ) : base( first, last ) { } template BOOST_DEDUCED_TYPENAME enable_if< is_compatible_range, sub_range& >::type operator=(ForwardRange2& r) { base::operator=( r ); return *this; } template BOOST_DEDUCED_TYPENAME enable_if< is_compatible_range, sub_range& >::type operator=( const ForwardRange2& r ) { base::operator=( r ); return *this; } sub_range& operator=( const sub_range& r ) { base::operator=( static_cast(r) ); return *this; } }; } // namespace 'boost' #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1500)) #pragma warning( pop ) #endif #endif