added input_output_iterator_archetype

[SVN r21578]
This commit is contained in:
Jeremy Siek
2004-01-10 19:49:32 +00:00
parent 669e6938cc
commit a50c9fca5c
2 changed files with 34 additions and 3 deletions

View File

@@ -137,6 +137,11 @@ main()
typedef output_iterator_archetype<int> Iter; typedef output_iterator_archetype<int> Iter;
function_requires< OutputIteratorConcept<Iter, int> >(); function_requires< OutputIteratorConcept<Iter, int> >();
} }
{
typedef input_output_iterator_archetype<int> Iter;
function_requires< InputIteratorConcept<Iter> >();
function_requires< OutputIteratorConcept<Iter, int> >();
}
{ {
typedef forward_iterator_archetype<null_archetype<> > Iter; typedef forward_iterator_archetype<null_archetype<> > Iter;
function_requires< ForwardIteratorConcept<Iter> >(); function_requires< ForwardIteratorConcept<Iter> >();

View File

@@ -406,19 +406,21 @@ namespace boost {
template <class T> template <class T>
class input_iterator_archetype class input_iterator_archetype
{ {
public: private:
typedef input_iterator_archetype self; typedef input_iterator_archetype self;
public: public:
typedef std::input_iterator_tag iterator_category; typedef std::input_iterator_tag iterator_category;
typedef T value_type; typedef T value_type;
typedef const T& reference; struct reference {
operator value_type() { return static_object<T>::get(); }
};
typedef const T* pointer; typedef const T* pointer;
typedef std::ptrdiff_t difference_type; typedef std::ptrdiff_t difference_type;
input_iterator_archetype() { } input_iterator_archetype() { }
self& operator=(const self&) { return *this; } self& operator=(const self&) { return *this; }
bool operator==(const self&) const { return true; } bool operator==(const self&) const { return true; }
bool operator!=(const self&) const { return true; } bool operator!=(const self&) const { return true; }
reference operator*() const { return static_object<T>::get(); } reference operator*() const { return reference(); }
self& operator++() { return *this; } self& operator++() { return *this; }
self operator++(int) { return *this; } self operator++(int) { return *this; }
}; };
@@ -451,6 +453,30 @@ namespace boost {
output_iterator_archetype() { } output_iterator_archetype() { }
}; };
template <class T>
class input_output_iterator_archetype
{
private:
typedef input_output_iterator_archetype self;
struct in_out_tag : public std::input_iterator_tag, public std::output_iterator_tag { };
public:
typedef in_out_tag iterator_category;
typedef T value_type;
struct reference {
reference& operator=(const T&) { return *this; }
operator value_type() { return static_object<T>::get(); }
};
typedef const T* pointer;
typedef std::ptrdiff_t difference_type;
input_output_iterator_archetype() { }
self& operator=(const self&) { return *this; }
bool operator==(const self&) const { return true; }
bool operator!=(const self&) const { return true; }
reference operator*() const { return reference(); }
self& operator++() { return *this; }
self operator++(int) { return *this; }
};
template <class T> template <class T>
class forward_iterator_archetype class forward_iterator_archetype
{ {