mirror of
				https://github.com/boostorg/iterator.git
				synced 2025-11-04 10:21:38 +01:00 
			
		
		
		
	A comment in boost/iterator.hpp and boost/detail/iterator.hpp mentions that the files are obsolete and will be deprecated. All they do is pull some types from namespace std into namespace boost.
		
			
				
	
	
		
			98 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// (C) Copyright Jeremy Siek 2002.
 | 
						|
// Distributed under 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)
 | 
						|
 | 
						|
#include <boost/iterator/iterator_concepts.hpp>
 | 
						|
#include <boost/iterator/iterator_categories.hpp>
 | 
						|
#include <boost/operators.hpp>
 | 
						|
 | 
						|
#include <iterator>
 | 
						|
#include <cstddef>
 | 
						|
 | 
						|
struct new_random_access
 | 
						|
  : std::random_access_iterator_tag
 | 
						|
  , boost::random_access_traversal_tag
 | 
						|
{};
 | 
						|
 | 
						|
struct new_iterator
 | 
						|
  : public std::iterator< new_random_access, int >
 | 
						|
{
 | 
						|
  int& operator*() const { return *m_x; }
 | 
						|
  new_iterator& operator++() { return *this; }
 | 
						|
  new_iterator operator++(int) { return *this; }
 | 
						|
  new_iterator& operator--() { return *this; }
 | 
						|
  new_iterator operator--(int) { return *this; }
 | 
						|
  new_iterator& operator+=(std::ptrdiff_t) { return *this; }
 | 
						|
  new_iterator operator+(std::ptrdiff_t) { return *this; }
 | 
						|
  new_iterator& operator-=(std::ptrdiff_t) { return *this; }
 | 
						|
  std::ptrdiff_t operator-(const new_iterator&) const { return 0; }
 | 
						|
  new_iterator operator-(std::ptrdiff_t) const { return *this; }
 | 
						|
  bool operator==(const new_iterator&) const { return false; }
 | 
						|
  bool operator!=(const new_iterator&) const { return false; }
 | 
						|
  bool operator<(const new_iterator&) const { return false; }
 | 
						|
  int* m_x;
 | 
						|
};
 | 
						|
new_iterator operator+(std::ptrdiff_t, new_iterator x) { return x; }
 | 
						|
 | 
						|
struct old_iterator
 | 
						|
  : public std::iterator<std::random_access_iterator_tag, int>
 | 
						|
{
 | 
						|
  int& operator*() const { return *m_x; }
 | 
						|
  old_iterator& operator++() { return *this; }
 | 
						|
  old_iterator operator++(int) { return *this; }
 | 
						|
  old_iterator& operator--() { return *this; }
 | 
						|
  old_iterator operator--(int) { return *this; }
 | 
						|
  old_iterator& operator+=(std::ptrdiff_t) { return *this; }
 | 
						|
  old_iterator operator+(std::ptrdiff_t) { return *this; }
 | 
						|
  old_iterator& operator-=(std::ptrdiff_t) { return *this; }
 | 
						|
  old_iterator operator-(std::ptrdiff_t) const { return *this; }
 | 
						|
  std::ptrdiff_t operator-(const old_iterator&) const { return 0; }
 | 
						|
  bool operator==(const old_iterator&) const { return false; }
 | 
						|
  bool operator!=(const old_iterator&) const { return false; }
 | 
						|
  bool operator<(const old_iterator&) const { return false; }
 | 
						|
  int* m_x;
 | 
						|
};
 | 
						|
old_iterator operator+(std::ptrdiff_t, old_iterator x) { return x; }
 | 
						|
 | 
						|
int
 | 
						|
main()
 | 
						|
{
 | 
						|
  boost::iterator_traversal<new_iterator>::type tc;
 | 
						|
  boost::random_access_traversal_tag derived = tc;
 | 
						|
  (void)derived;
 | 
						|
  
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::WritableIteratorConcept<int*> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::LvalueIteratorConcept<int*> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::RandomAccessTraversalConcept<int*> >();
 | 
						|
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::ReadableIteratorConcept<const int*> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::LvalueIteratorConcept<const int*> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::RandomAccessTraversalConcept<const int*> >();
 | 
						|
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::WritableIteratorConcept<new_iterator> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::LvalueIteratorConcept<new_iterator> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::RandomAccessTraversalConcept<new_iterator> >();
 | 
						|
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::WritableIteratorConcept<old_iterator> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::LvalueIteratorConcept<old_iterator> >();
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::RandomAccessTraversalConcept<old_iterator> >();
 | 
						|
 | 
						|
  boost::function_requires<
 | 
						|
    boost_concepts::InteroperableIteratorConcept<int*, int const*> >();
 | 
						|
 | 
						|
  return 0;
 | 
						|
}
 |