summaryrefslogtreecommitdiff
path: root/doc/html/intrusive/concepts.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/intrusive/concepts.html')
-rw-r--r--doc/html/intrusive/concepts.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/intrusive/concepts.html b/doc/html/intrusive/concepts.html
index 54979b397c..3c8755cf95 100644
--- a/doc/html/intrusive/concepts.html
+++ b/doc/html/intrusive/concepts.html
@@ -4,9 +4,9 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Concepts explained</title>
<link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
-<link rel="up" href="../intrusive.html" title="Chapter&#160;16.&#160;Boost.Intrusive">
+<link rel="up" href="../intrusive.html" title="Chapter&#160;17.&#160;Boost.Intrusive">
<link rel="prev" href="any_hooks.html" title="Any Hooks: A single hook for any Intrusive container">
<link rel="next" href="node_algorithms.html" title="Node algorithms with custom NodeTraits">
</head>
@@ -31,7 +31,7 @@
This section will expand the explanation of previously presented basic concepts
before explaining the customization options of <span class="bold"><strong>Boost.Intrusive</strong></span>.
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
<span class="bold"><strong>Node Algorithms</strong></span>: A set of static functions
that implement basic operations on a group of nodes: initialize a node,
link_mode_type a node to a group of nodes, unlink a node from another group
@@ -74,7 +74,7 @@
<span class="comment">// ...</span>
<span class="special">};</span>
</pre>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
<span class="bold"><strong>Node Traits</strong></span>: A class that encapsulates
the basic information and operations on a node within a group of nodes:
the type of the node, a function to obtain the pointer to the next node,
@@ -106,7 +106,7 @@
<span class="special">{</span> <span class="identifier">n</span><span class="special">-&gt;</span><span class="identifier">next_</span> <span class="special">=</span> <span class="identifier">next</span><span class="special">;</span> <span class="special">}</span>
<span class="special">};</span>
</pre>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
<span class="bold"><strong>Hook</strong></span>: A class that the user must add as
a base class or as a member to his own class to make that class insertable
in an intrusive container. Usually the hook contains a node object that
@@ -146,7 +146,7 @@
<span class="keyword">int</span> <span class="identifier">value_</span><span class="special">;</span>
<span class="special">};</span>
</pre>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
<span class="bold"><strong>Intrusive Container</strong></span>: A container that
offers a STL-like interface to store user objects. An intrusive container
can be templatized to store different value types that use different hooks.
@@ -182,7 +182,7 @@
<span class="comment">// ...</span>
<span class="special">};</span>
</pre>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<span class="bold"><strong>Semi-Intrusive Container</strong></span>: A semi-intrusive
container is similar to an intrusive container, but apart from the values