summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-03-12 09:47:03 +0000
committerGabor Greif <ggreif@gmail.com>2009-03-12 09:47:03 +0000
commit0cbcabedc5f69f335d7fee5f23970e0820d8da99 (patch)
treee4685a2a680ed68a8ed6522f354acda74ca09bef /docs/ProgrammersManual.html
parent0ff4e2105ba0d8e378cbd01bf9f4db935d1bf39f (diff)
downloadllvm-0cbcabedc5f69f335d7fee5f23970e0820d8da99.tar.gz
llvm-0cbcabedc5f69f335d7fee5f23970e0820d8da99.tar.bz2
llvm-0cbcabedc5f69f335d7fee5f23970e0820d8da99.tar.xz
minor tweaks
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html23
1 files changed, 12 insertions, 11 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 47a982924c..a990462c25 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -247,10 +247,9 @@ reference</a> - an excellent reference for the STL and other parts of the
standard C++ library.</li>
<li><a href="http://www.tempest-sw.com/cpp/">C++ In a Nutshell</a> - This is an
-O'Reilly book in the making. It has a decent
-Standard Library
-Reference that rivals Dinkumware's, and is unfortunately no longer free since the book has been
-published.</li>
+O'Reilly book in the making. It has a decent Standard Library
+Reference that rivals Dinkumware's, and is unfortunately no longer free since the
+book has been published.</li>
<li><a href="http://www.parashift.com/c++-faq-lite/">C++ Frequently Asked
Questions</a></li>
@@ -890,11 +889,12 @@ prev/next pointers for the list.</p>
requires an <tt>ilist_traits</tt> implementation for the element type, but it
provides some novel characteristics. In particular, it can efficiently store
polymorphic objects, the traits class is informed when an element is inserted or
-removed from the list, and ilists are guaranteed to support a constant-time splice
-operation.</p>
+removed from the list, and <tt>ilist</tt>s are guaranteed to support a
+constant-time splice operation.</p>
-<p>These properties are exactly what we want for things like <tt>Instruction</tt>s
-and basic blocks, which is why these are implemented with <tt>ilist</tt>s.</p>
+<p>These properties are exactly what we want for things like
+<tt>Instruction</tt>s and basic blocks, which is why these are implemented with
+<tt>ilist</tt>s.</p>
Related classes of interest are explained in the following subsections:
<ul>
@@ -922,8 +922,8 @@ publicly derive from this traits class.</p>
<div class="doc_text">
<p><tt>iplist&lt;T&gt;</tt> is <tt>ilist&lt;T&gt;</tt>'s base and as such
-supports a slightly narrower interface. Notably, inserters from <tt>T&amp;</tt>
-are absent.</p>
+supports a slightly narrower interface. Notably, inserters from
+<tt>T&amp;</tt> are absent.</p>
<p><tt>ilist_traits&lt;T&gt;</tt> is a public base of this class and can be
used for a wide variety of customizations.</p>
@@ -940,7 +940,8 @@ that are expected by the <tt>ilist&lt;T&gt;</tt> (and analogous containers)
in the default manner.</p>
<p><tt>ilist_node&lt;T&gt;</tt>s are meant to be embedded in the node type
-<tt>T</tt>.</p>
+<tt>T</tt>, usually <tt>T</tt> publicly derives from
+<tt>ilist_node&lt;T&gt;</tt>.</p>
</div>
<!-- _______________________________________________________________________ -->