From 3b60f75bc6d3593f51287bb3dab4eeea027f986d Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 2 Nov 2004 14:31:27 +0000 Subject: [PATCH] Stop reserving rights. [SVN r26085] --- doc/BidirectionalTraversal.html | 6 +- doc/ForwardTraversal.html | 6 +- doc/IncrementableIterator.html | 6 +- doc/LvalueIterator.html | 6 +- doc/RandomAccessTraversal.html | 6 +- doc/ReadableIterator.html | 6 +- doc/SinglePassIterator.html | 6 +- doc/SwappableIterator.html | 6 +- doc/WritableIterator.html | 6 +- doc/counting_iterator.html | 14 +- doc/counting_iterator.pdf | Bin 81036 -> 74550 bytes doc/facade-and-adaptor.html | 21 +- doc/facade-and-adaptor.pdf | Bin 223555 -> 223567 bytes doc/filter_iterator.html | 20 +- doc/filter_iterator.pdf | Bin 77005 -> 70203 bytes doc/filter_iterator_ref.html | 52 +- doc/function_output_iterator.html | 8 +- doc/function_output_iterator.pdf | Bin 55921 -> 55872 bytes doc/index.html | 4 +- doc/index.rst | 2 +- doc/indirect_iterator.html | 14 +- doc/indirect_iterator.pdf | Bin 82359 -> 78683 bytes doc/indirect_iterator_ref.html | 153 ++- doc/issues.html | 11 +- doc/iter-issue-list.html | 99 +- doc/iterator_adaptor.html | 19 +- doc/iterator_adaptor.pdf | Bin 106075 -> 98876 bytes doc/iterator_adaptor_ref.html | 62 +- doc/iterator_archetypes.html | 14 +- doc/iterator_archetypes.pdf | Bin 66747 -> 61216 bytes doc/iterator_concepts.html | 12 +- doc/iterator_concepts.pdf | Bin 67067 -> 66709 bytes doc/iterator_facade.html | 16 +- doc/iterator_facade.pdf | Bin 180312 -> 169170 bytes doc/iterator_traits.html | 12 +- doc/iterator_traits.pdf | Bin 53725 -> 49650 bytes doc/make_filter_iterator.html | 18 +- doc/new-iter-concepts.html | 10 +- doc/new-iter-concepts.pdf | 2061 ++++++++++++++--------------- doc/permutation_iterator.html | 8 +- doc/permutation_iterator.pdf | Bin 68591 -> 68561 bytes doc/pointee.html | 12 +- doc/pointee.pdf | Bin 68096 -> 63955 bytes doc/ref_problem.html | 9 +- doc/reverse_iterator.html | 16 +- doc/reverse_iterator.pdf | Bin 68047 -> 62047 bytes doc/transform_iterator.html | 10 +- doc/transform_iterator.pdf | Bin 73219 -> 70067 bytes doc/zip_iterator.html | 8 +- doc/zip_iterator.pdf | Bin 62703 -> 62510 bytes 50 files changed, 1383 insertions(+), 1356 deletions(-) diff --git a/doc/BidirectionalTraversal.html b/doc/BidirectionalTraversal.html index 0daa77e..9de555e 100644 --- a/doc/BidirectionalTraversal.html +++ b/doc/BidirectionalTraversal.html @@ -3,18 +3,18 @@ - + Bidirectional Traversal Concept -

Bidirectional Traversal Concept

+

A class or built-in type X models the Bidirectional Traversal concept if, in addition to X meeting the requirements of Forward Traversal Iterator, the following expressions are valid and respect the stated semantics.

- +
diff --git a/doc/ForwardTraversal.html b/doc/ForwardTraversal.html index abe055f..80447aa 100644 --- a/doc/ForwardTraversal.html +++ b/doc/ForwardTraversal.html @@ -3,18 +3,18 @@ - +Forward Traversal Concept -

Forward Traversal Concept

+

A class or built-in type X models the Forward Traversal concept if, in addition to X meeting the requirements of Default Constructible and Single Pass Iterator, the following expressions are valid and respect the stated semantics.

-
+
diff --git a/doc/IncrementableIterator.html b/doc/IncrementableIterator.html index c3ccfd7..0544d22 100644 --- a/doc/IncrementableIterator.html +++ b/doc/IncrementableIterator.html @@ -3,18 +3,18 @@ - +Incrementable Iterator Concept -

Incrementable Iterator Concept

+

A class or built-in type X models the Incrementable Iterator concept if, in addition to X being Assignable and Copy Constructible, the following expressions are valid and respect the stated semantics.

-
+
diff --git a/doc/LvalueIterator.html b/doc/LvalueIterator.html index 3e3f97a..29b3187 100644 --- a/doc/LvalueIterator.html +++ b/doc/LvalueIterator.html @@ -3,17 +3,17 @@ - +Lvalue Iterator Concept -

Lvalue Iterator Concept

+

The Lvalue Iterator concept adds the requirement that the return type of operator* type be a reference to the value type of the iterator.

-
+
diff --git a/doc/RandomAccessTraversal.html b/doc/RandomAccessTraversal.html index 4f7f40e..761ab0d 100644 --- a/doc/RandomAccessTraversal.html +++ b/doc/RandomAccessTraversal.html @@ -3,19 +3,19 @@ - +Random Access Traversal Concept -

Random Access Traversal Concept

+

A class or built-in type X models the Random Access Traversal concept if the following expressions are valid and respect the stated semantics. In the table below, Distance is iterator_traits<X>::difference_type and n represents a constant object of type Distance.

-
+
diff --git a/doc/ReadableIterator.html b/doc/ReadableIterator.html index 57edb8f..df231d3 100644 --- a/doc/ReadableIterator.html +++ b/doc/ReadableIterator.html @@ -3,19 +3,19 @@ - +Readable Iterator Concept -

Readable Iterator Concept

+

A class or built-in type X models the Readable Iterator concept for value type T if, in addition to X being Assignable and Copy Constructible, the following expressions are valid and respect the stated semantics. U is the type of any specified member of type T.

-
+
diff --git a/doc/SinglePassIterator.html b/doc/SinglePassIterator.html index a6091c7..bd176d8 100644 --- a/doc/SinglePassIterator.html +++ b/doc/SinglePassIterator.html @@ -3,17 +3,17 @@ - +Single Pass Iterator Concept -

Single Pass Iterator Concept

+

A class or built-in type X models the Single Pass Iterator concept if the following expressions are valid and respect the stated semantics.

-
+
diff --git a/doc/SwappableIterator.html b/doc/SwappableIterator.html index faf0347..7478e5f 100644 --- a/doc/SwappableIterator.html +++ b/doc/SwappableIterator.html @@ -3,17 +3,17 @@ - +Swappable Iterator Concept -

Swappable Iterator Concept

+

A class or built-in type X models the Swappable Iterator concept if, in addition to X being Copy Constructible, the following expressions are valid and respect the stated semantics.

-
+
diff --git a/doc/WritableIterator.html b/doc/WritableIterator.html index dafee1c..c3676bf 100644 --- a/doc/WritableIterator.html +++ b/doc/WritableIterator.html @@ -3,18 +3,18 @@ - +Writable Iterator Concept -

Writable Iterator Concept

+

A class or built-in type X models the Writable Iterator concept if, in addition to X being Copy Constructible, the following expressions are valid and respect the stated semantics. Writable Iterators have an associated set of value types.

-
+
diff --git a/doc/counting_iterator.html b/doc/counting_iterator.html index a098422..6949231 100644 --- a/doc/counting_iterator.html +++ b/doc/counting_iterator.html @@ -3,16 +3,15 @@ - +Counting Iterator - - + + -

Counting Iterator

@@ -27,11 +26,12 @@ Lab, University of Hanover Institute for Transport Railway Operation and Construction - + - +
Date:2004-01-15
2004-11-01
Copyright:Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003. All rights reserved
Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003.
+
@@ -52,7 +52,7 @@ are forwarded to the adapted object.

-

Table of Contents

+

Table of Contents

+ + diff --git a/doc/issues.html b/doc/issues.html index 8087b45..122a9c3 100755 --- a/doc/issues.html +++ b/doc/issues.html @@ -3,13 +3,13 @@ - + Problem with is_writable and is_swappable in N1550 -

Problem with is_writable and is_swappable in N1550

+
@@ -30,7 +30,7 @@ at http://www.b
-

Table of Contents

+

Table of Contents

+ + diff --git a/doc/iter-issue-list.html b/doc/iter-issue-list.html index 695b466..abe7c7a 100755 --- a/doc/iter-issue-list.html +++ b/doc/iter-issue-list.html @@ -3,27 +3,24 @@ - + Iterator concept and adapter issues - - + -

Iterator concept and adapter issues

- - - +
Date:2004-01-21
Copyright:Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003.
2004-01-27
+
-

Index

+

Index

- + diff --git a/doc/iterator_archetypes.html b/doc/iterator_archetypes.html index 143e9d0..ef61809 100755 --- a/doc/iterator_archetypes.html +++ b/doc/iterator_archetypes.html @@ -3,16 +3,15 @@ - + Iterator Archetype - - + + -

Iterator Archetype

@@ -26,11 +25,12 @@ - + - +
Boost Consulting, Indiana University Open Systems Lab, Zephyr Associates, Inc.
Date:2004-01-27
2004-11-01
Copyright:Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2004. All rights reserved
Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2004.
+
@@ -44,7 +44,7 @@ For further information see the documentation for the
-

Table of Contents

+

Table of Contents