forked from boostorg/range
https://svn.boost.org/svn/boost/trunk ........ r40923 | eric_niebler | 2007-11-07 22:48:08 -0800 (Wed, 07 Nov 2007) | 1 line fix errors and warnings on msvc-9 ........ r40924 | chris_kohlhoff | 2007-11-07 23:52:49 -0800 (Wed, 07 Nov 2007) | 2 lines Fix timer stalls. ........ r40925 | johnmaddock | 2007-11-08 01:38:22 -0800 (Thu, 08 Nov 2007) | 1 line Fixed license text. ........ r40926 | bemandawes | 2007-11-08 04:35:50 -0800 (Thu, 08 Nov 2007) | 1 line Borland appends newline, so just check text ........ r40927 | johnmaddock | 2007-11-08 04:39:58 -0800 (Thu, 08 Nov 2007) | 1 line Removed non-BSL files, updated and regenerated docs accordingly. ........ r40928 | bemandawes | 2007-11-08 05:01:23 -0800 (Thu, 08 Nov 2007) | 1 line Markup older Borland compilers that don't support enable_if ........ r40932 | bemandawes | 2007-11-08 06:25:09 -0800 (Thu, 08 Nov 2007) | 1 line Clarify comment ........ r40934 | joaquin | 2007-11-08 07:46:57 -0800 (Thu, 08 Nov 2007) | 1 line removed markup for a fixed failure of multi_index on vacpp ........ r40935 | nikiml | 2007-11-08 08:28:44 -0800 (Thu, 08 Nov 2007) | 1 line changed handle cast to downcast ........ r40936 | hljin | 2007-11-08 09:31:56 -0800 (Thu, 08 Nov 2007) | 1 line GIL: added missing standard C++ header files ........ r40937 | hljin | 2007-11-08 09:35:37 -0800 (Thu, 08 Nov 2007) | 1 line GIL: added namespace prefix to avoid confusion ........ r40938 | danieljames | 2007-11-08 10:04:12 -0800 (Thu, 08 Nov 2007) | 3 lines Remove the <small> from the copyright footer, because it was causing the markup to be invalid. ........ r40939 | johnmaddock | 2007-11-08 10:05:28 -0800 (Thu, 08 Nov 2007) | 1 line Applied fix from http://svn.boost.org/trac/boost/ticket/1023. ........ r40956 | vladimir_prus | 2007-11-09 00:26:47 -0800 (Fri, 09 Nov 2007) | 1 line Don't use toolset.register ........ r40957 | vladimir_prus | 2007-11-09 00:30:27 -0800 (Fri, 09 Nov 2007) | 2 lines Remove toolset.register. ........ r40958 | speedsnail | 2007-11-09 00:31:45 -0800 (Fri, 09 Nov 2007) | 2 lines Force static linking for toolsets mingw and boorland. ........ r40959 | speedsnail | 2007-11-09 01:28:29 -0800 (Fri, 09 Nov 2007) | 1 line Reverted the previous commit, until I find a better solution... ........ r40960 | johnmaddock | 2007-11-09 01:54:43 -0800 (Fri, 09 Nov 2007) | 1 line Still trying to get the Solaris error rates correct.... ........ r40961 | johnmaddock | 2007-11-09 01:59:37 -0800 (Fri, 09 Nov 2007) | 1 line Trivial fix for issue #647. ........ r40962 | nesotto | 2007-11-09 02:27:42 -0800 (Fri, 09 Nov 2007) | 1 line major update wrt. new range concepts ........ r40963 | johnmaddock | 2007-11-09 03:01:45 -0800 (Fri, 09 Nov 2007) | 1 line Improved error messages and added tentative fixes for HP Tru64: the compiler appears to store constants that should underflow to zero as a small non-zero values which messes up the logic used in the test cases. ........ r40964 | nesotto | 2007-11-09 05:13:06 -0800 (Fri, 09 Nov 2007) | 1 line minor editorial issue ........ r40965 | nesotto | 2007-11-09 05:30:57 -0800 (Fri, 09 Nov 2007) | 1 line update of new concepts, and replacement of range_size<T>::type with range_difference<T>::type throughut the library ........ r40966 | nesotto | 2007-11-09 05:31:43 -0800 (Fri, 09 Nov 2007) | 1 line minor tweaks to avoid warnings ... extension mechanism updated to follow new protocol ........ r40967 | schoepflin | 2007-11-09 06:25:44 -0800 (Fri, 09 Nov 2007) | 1 line Added memory barriers to Tru64 atomic ops. ........ r40968 | nesotto | 2007-11-09 07:15:28 -0800 (Fri, 09 Nov 2007) | 1 line improved reference ........ r40969 | johnmaddock | 2007-11-09 08:57:42 -0800 (Fri, 09 Nov 2007) | 1 line Added needed macro suppression to use of isfinite. ........ [SVN r40970]
166 lines
4.8 KiB
C++
Executable File
166 lines
4.8 KiB
C++
Executable File
// 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_SUB_RANGE_HPP
|
|
#define BOOST_RANGE_SUB_RANGE_HPP
|
|
|
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) || BOOST_WORKAROUND(BOOST_MSVC, == 1400)
|
|
#pragma warning( disable : 4996 )
|
|
#endif
|
|
|
|
#include <boost/range/config.hpp>
|
|
#include <boost/range/iterator_range.hpp>
|
|
#include <boost/range/value_type.hpp>
|
|
#include <boost/range/size_type.hpp>
|
|
#include <boost/range/difference_type.hpp>
|
|
#include <boost/assert.hpp>
|
|
|
|
namespace boost
|
|
{
|
|
|
|
template< class ForwardRange >
|
|
class sub_range : public iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type >
|
|
{
|
|
typedef BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type iterator_t;
|
|
typedef iterator_range< iterator_t > base;
|
|
|
|
typedef BOOST_DEDUCED_TYPENAME base::impl impl;
|
|
public:
|
|
typedef BOOST_DEDUCED_TYPENAME range_value<ForwardRange>::type value_type;
|
|
typedef BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type iterator;
|
|
typedef BOOST_DEDUCED_TYPENAME range_iterator<const ForwardRange>::type const_iterator;
|
|
typedef BOOST_DEDUCED_TYPENAME range_difference<ForwardRange>::type difference_type;
|
|
typedef BOOST_DEDUCED_TYPENAME range_size<ForwardRange>::type size_type;
|
|
typedef BOOST_DEDUCED_TYPENAME base::reference reference;
|
|
|
|
public:
|
|
sub_range() : base()
|
|
{ }
|
|
|
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) || BOOST_WORKAROUND(BOOST_MSVC, == 1400)
|
|
sub_range( const sub_range& r )
|
|
: base( static_cast<const base&>( r ) )
|
|
{ }
|
|
#endif
|
|
|
|
template< class ForwardRange2 >
|
|
sub_range( ForwardRange2& r ) :
|
|
|
|
#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 ) :
|
|
|
|
#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< class ForwardRange2 >
|
|
sub_range& operator=( ForwardRange2& r )
|
|
{
|
|
base::operator=( r );
|
|
return *this;
|
|
}
|
|
|
|
template< class ForwardRange2 >
|
|
sub_range& operator=( const ForwardRange2& r )
|
|
{
|
|
base::operator=( r );
|
|
return *this;
|
|
}
|
|
|
|
sub_range& operator=( const sub_range& r )
|
|
{
|
|
base::operator=( static_cast<const base&>(r) );
|
|
return *this;
|
|
}
|
|
|
|
public:
|
|
|
|
iterator begin() { return base::begin(); }
|
|
const_iterator begin() const { return base::begin(); }
|
|
iterator end() { return base::end(); }
|
|
const_iterator end() const { return base::end(); }
|
|
difference_type size() const { return base::size(); }
|
|
|
|
|
|
public: // convenience
|
|
reference front()
|
|
{
|
|
return base::front();
|
|
}
|
|
|
|
const value_type& front() const
|
|
{
|
|
return base::front();
|
|
}
|
|
|
|
reference back()
|
|
{
|
|
return base::back();
|
|
}
|
|
|
|
const value_type& back() const
|
|
{
|
|
return base::back();
|
|
}
|
|
|
|
reference operator[]( difference_type sz )
|
|
{
|
|
return base::operator[](sz);
|
|
}
|
|
|
|
const value_type& operator[]( difference_type sz ) const
|
|
{
|
|
return base::operator[](sz);
|
|
}
|
|
|
|
};
|
|
|
|
template< class ForwardRange, class ForwardRange2 >
|
|
inline bool operator==( const sub_range<ForwardRange>& l,
|
|
const sub_range<ForwardRange2>& r )
|
|
{
|
|
return iterator_range_detail::equal( l, r );
|
|
}
|
|
|
|
template< class ForwardRange, class ForwardRange2 >
|
|
inline bool operator!=( const sub_range<ForwardRange>& l,
|
|
const sub_range<ForwardRange2>& r )
|
|
{
|
|
return !iterator_range_detail::equal( l, r );
|
|
}
|
|
|
|
template< class ForwardRange, class ForwardRange2 >
|
|
inline bool operator<( const sub_range<ForwardRange>& l,
|
|
const sub_range<ForwardRange2>& r )
|
|
{
|
|
return iterator_range_detail::less_than( l, r );
|
|
}
|
|
|
|
|
|
} // namespace 'boost'
|
|
|
|
#endif
|
|
|