From 58288cfb482f91aac1a9b90cf8697ed7638cc3ab Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 27 Jan 2004 04:06:21 +0000 Subject: [PATCH] Fixed parsed-literal [SVN r21986] --- doc/iterator_archetypes.html | 52 +++++++++++++++++------------------- doc/iterator_archetypes.rst | 6 ++--- 2 files changed, 27 insertions(+), 31 deletions(-) diff --git a/doc/iterator_archetypes.html b/doc/iterator_archetypes.html index 8e3b75c..c50795d 100755 --- a/doc/iterator_archetypes.html +++ b/doc/iterator_archetypes.html @@ -7,7 +7,7 @@ Iterator Archetype - + @@ -26,7 +26,7 @@ Boost Consulting, Indiana University Open Systems Lab, Zephyr Associates, Inc. Date: -2004-01-13 +2004-01-16 Copyright: Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2004. All rights reserved @@ -42,30 +42,30 @@ Lab, Zephyr Ass

Table of Contents

-

Reference

+

Reference

-

iterator_archetype Synopsis

+

iterator_archetype Synopsis

 namespace iterator_archetypes
 {
     // Access categories
 
-    typedef /implementation  defined/ readable_iterator_t;
-    typedef /implementation  defined/ writable_iterator_t;
-    typedef /implementation  defined/ readable_writable_iterator_t;
-    typedef /implementation  defined/ readable_lvalue_iterator_t;
-    typedef /implementation  defined/ writable_lvalue_iterator_t;
+    typedef /*implementation  defined*/ readable_iterator_t;
+    typedef /*implementation  defined*/ writable_iterator_t;
+    typedef /*implementation  defined*/ readable_writable_iterator_t;
+    typedef /*implementation  defined*/ readable_lvalue_iterator_t;
+    typedef /*implementation  defined*/ writable_lvalue_iterator_t;
 
 }
 
@@ -76,19 +76,16 @@ template <
 >
 class iterator_archetype
 {
-    typedef /* see below / value_type;
-    typedef / see below / reference;
-    typedef / see below / pointer;
-    typedef / see below / difference_type;
-    typedef / see below */ iterator_category;
+    typedef /* see below */ value_type;
+    typedef /* see below */ reference;
+    typedef /* see below */ pointer;
+    typedef /* see below */ difference_type;
+    typedef /* see below */ iterator_category;
 };
 
-
-

System Message: WARNING/2 (iterator_archetypes.rst, line 26); backlink

-Inline emphasis start-string without end-string.
-

Access Category Tags

+

Access Category Tags

The access category types provided correspond to the following standard iterator access concept combinations:

@@ -114,7 +111,7 @@ writeable_lvalue_iterator_t :=
 
-

iterator_archetype Requirements

+

iterator_archetype Requirements

The AccessCategory argument must be one of the predefined access category tags. The TraversalCategory must be one of the standard traversal tags. The Value type must satisfy the requirements of @@ -122,14 +119,14 @@ the iterator concept specified by AccessCa TraversalCategory as implied by the nested traits types.

-

iterator_archetype Models

+

iterator_archetype Models

iterator_archetype models the iterator concepts specified by the AccessCategory and TraversalCategory arguments. iterator_archetype does not model any other access concepts or any more derived traversal concepts.

-

Traits

+

Traits

The nested trait types are defined as follows:

 if (AccessCategory == readable_iterator_t)
@@ -213,7 +210,6 @@ iterator_category :=
 
 
 
diff --git a/doc/iterator_archetypes.rst b/doc/iterator_archetypes.rst
index ad711d8..02ce417 100755
--- a/doc/iterator_archetypes.rst
+++ b/doc/iterator_archetypes.rst
@@ -23,7 +23,7 @@ Reference
 ``iterator_archetype`` Synopsis
 ...............................
 
-.. parsed-literal::
+::
 
     namespace iterator_archetypes
     {
@@ -57,7 +57,7 @@ Reference
 The access category types provided correspond to the following
 standard iterator access concept combinations:
 
-.. parsed-literal::
+::
 
     readable_iterator_t :=
   
@@ -101,7 +101,7 @@ concepts or any more derived traversal concepts.
 
 The nested trait types are defined as follows:
 
-.. parsed-literal::
+::
 
    if (AccessCategory == readable_iterator_t)