OSDN Git Service

2007-11-13 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / docs / html / 24_iterators / howto.html
index c22df9a..7c2f106 100644 (file)
    <meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
    <meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 24." />
    <meta name="GENERATOR" content="vi and eight fingers" />
-   <title>libstdc++-v3 HOWTO:  Chapter 24</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+   <title>libstdc++ HOWTO:  Chapter 24: Iterators</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+  title="GNU C++ Standard Library" />
+<link rel="Prev" href="../23_containers/howto.html" type="text/html"
+  title="Containers" />
+<link rel="Next" href="../25_algorithms/howto.html" type="text/html"
+  title="Algorithms" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
 </head>
 <body>
 
@@ -37,7 +45,7 @@
 <h2><a name="1">They ain't pointers!</a></h2>
    <p><a href="../faq/index.html#5_1">FAQ 5.1</a> points out that iterators
       are not implemented as pointers.  They are a generalization of
-      pointers, but they are implemented in libstdc++-v3 as separate classes.
+      pointers, but they are implemented in libstdc++ as separate classes.
    </p>
    <p>Keeping that simple fact in mind as you design your code will
       prevent a whole lot of difficult-to-understand bugs.
@@ -59,7 +67,7 @@
       things as it would be doing if you had hand-coded it yourself (for
       the 273rd time).
    </p>
-   <p>How much overhead <em>is</em> there when using an interator class?
+   <p>How much overhead <em>is</em> there when using an iterator class?
       Very little.  Most of the layering classes contain nothing but
       typedefs, and typedefs are &quot;meta-information&quot; that simply
       tell the compiler some nicknames; they don't create code.  That