summaryrefslogtreecommitdiff
path: root/doc/html/circular_buffer
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2016-10-06 10:30:07 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2016-10-06 10:32:57 +0900
commit71d216b90256936a9638f325af9bc69d720e75de (patch)
tree9c5f682d341c7c88ad0c8e3d4b262e00b6fb691a /doc/html/circular_buffer
parent733b5d5ae2c5d625211e2985ac25728ac3f54883 (diff)
downloadboost-71d216b90256936a9638f325af9bc69d720e75de.tar.gz
boost-71d216b90256936a9638f325af9bc69d720e75de.tar.bz2
boost-71d216b90256936a9638f325af9bc69d720e75de.zip
Imported Upstream version 1.59.0
Change-Id: I2dde00f4eca71df3eea9d251dcaecde18a6c90a5 Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'doc/html/circular_buffer')
-rw-r--r--doc/html/circular_buffer/acknowledgements.html1
-rw-r--r--doc/html/circular_buffer/concepts.html1
-rw-r--r--doc/html/circular_buffer/example.html1
-rw-r--r--doc/html/circular_buffer/examples.html7
-rw-r--r--doc/html/circular_buffer/headers.html3
-rw-r--r--doc/html/circular_buffer/implementation.html9
-rw-r--r--doc/html/circular_buffer/rationale.html5
-rw-r--r--doc/html/circular_buffer/release.html1
-rw-r--r--doc/html/circular_buffer/s14.html201
-rw-r--r--doc/html/circular_buffer/template_params.html1
-rw-r--r--doc/html/circular_buffer/tickets.html1
-rw-r--r--doc/html/circular_buffer/version_id.html3
12 files changed, 123 insertions, 111 deletions
diff --git a/doc/html/circular_buffer/acknowledgements.html b/doc/html/circular_buffer/acknowledgements.html
index 8943998da1..7211afed63 100644
--- a/doc/html/circular_buffer/acknowledgements.html
+++ b/doc/html/circular_buffer/acknowledgements.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
diff --git a/doc/html/circular_buffer/concepts.html b/doc/html/circular_buffer/concepts.html
index d53b011940..0c20f08e37 100644
--- a/doc/html/circular_buffer/concepts.html
+++ b/doc/html/circular_buffer/concepts.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
diff --git a/doc/html/circular_buffer/example.html b/doc/html/circular_buffer/example.html
index c7f618313b..d4e7e9075a 100644
--- a/doc/html/circular_buffer/example.html
+++ b/doc/html/circular_buffer/example.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
diff --git a/doc/html/circular_buffer/examples.html b/doc/html/circular_buffer/examples.html
index 1af13a5177..205974a5e4 100644
--- a/doc/html/circular_buffer/examples.html
+++ b/doc/html/circular_buffer/examples.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
@@ -176,7 +177,7 @@
<a href="../../../libs/utility/call_traits.htm" target="_top">Boost.call_traits utility</a>.
</p>
<p>
- The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37372688-bb">push_front()</a></code>
+ The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24018320-bb">push_front()</a></code>
method is called by the producer thread in order to insert a new item into
the buffer. The method locks the mutex and waits until there is a space for
the new item. (The mutex is unlocked during the waiting stage and has to be
@@ -189,7 +190,7 @@
consumer threads waiting for a new item to be inserted into the buffer.
</p>
<p>
- The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37415056-bb">pop_back()</a></code>
+ The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24060688-bb">pop_back()</a></code>
method is called by the consumer thread in order to read the next item from
the buffer. The method locks the mutex and waits until there is an unread item
in the buffer. If there is at least one unread item, the method decrements
@@ -202,7 +203,7 @@
the item</strong></span> but the item is left in the circular_buffer which then
<span class="bold"><strong>replaces it with a new one</strong></span> (inserted by a
producer) when the circular_buffer is full. This technique is more effective
- than removing the item explicitly by calling the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37415056-bb">circular_buffer::pop_back()</a></code>
+ than removing the item explicitly by calling the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24060688-bb">circular_buffer::pop_back()</a></code>
method of the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>.
</p>
<p>
diff --git a/doc/html/circular_buffer/headers.html b/doc/html/circular_buffer/headers.html
index a8400bc377..a96406f0cb 100644
--- a/doc/html/circular_buffer/headers.html
+++ b/doc/html/circular_buffer/headers.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
@@ -40,7 +41,7 @@
defined in the file <a href="../../../boost/circular_buffer/base.hpp" target="_top">base.hpp</a>.
</p>
<p>
- The <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
+ The <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
is defined in the file <a href="../../../boost/circular_buffer/space_optimized.hpp" target="_top">space_optimized.hpp</a>.
</p>
</div>
diff --git a/doc/html/circular_buffer/implementation.html b/doc/html/circular_buffer/implementation.html
index 0993d946cf..fee357e85e 100644
--- a/doc/html/circular_buffer/implementation.html
+++ b/doc/html/circular_buffer/implementation.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
@@ -146,13 +147,13 @@
</ul></div>
<p>
It is considered to be a bug to read or remove an element (e.g. by calling
- <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp36940624-bb">front()</a></code> or
- <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37415056-bb">pop_back()</a></code>)
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp23586256-bb">front()</a></code> or
+ <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp24060688-bb">pop_back()</a></code>)
from an empty std container and from an empty <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>
as well. The data consumer has to test if the container is not empty before
- reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp37112832-bb">empty()</a></code>.
+ reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp23758464-bb">empty()</a></code>.
However, when reading from the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>,
- there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp36919312-bb">at()</a></code>
+ there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp23564944-bb">at()</a></code>
method which throws an exception when the index is out of range.
</p>
<h4>
diff --git a/doc/html/circular_buffer/rationale.html b/doc/html/circular_buffer/rationale.html
index 1bacc18036..dc81796bfd 100644
--- a/doc/html/circular_buffer/rationale.html
+++ b/doc/html/circular_buffer/rationale.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
@@ -47,7 +48,7 @@
</li>
<li class="listitem">
Suitable for <span class="emphasis"><em>specialization</em></span> by means of adaptors.
- (The <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
+ (The <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
is such an example of the adaptor.)
</li>
<li class="listitem">
@@ -56,7 +57,7 @@
</ul></div>
<p>
In order to achieve maximum efficiency, the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>
- and <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
+ and <code class="computeroutput"><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">circular_buffer_space_optimized</a></code>
store their elements in a <span class="bold"><strong>contiguous region of memory</strong></span>,
which then enables:
</p>
diff --git a/doc/html/circular_buffer/release.html b/doc/html/circular_buffer/release.html
index c177d8a97e..9fd4d08350 100644
--- a/doc/html/circular_buffer/release.html
+++ b/doc/html/circular_buffer/release.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
diff --git a/doc/html/circular_buffer/s14.html b/doc/html/circular_buffer/s14.html
index 5da2c51000..9072366843 100644
--- a/doc/html/circular_buffer/s14.html
+++ b/doc/html/circular_buffer/s14.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
@@ -6,7 +7,7 @@
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../circular_buffer.html" title="Chapter&#160;7.&#160;Boost.Circular Buffer">
-<link rel="prev" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized">
+<link rel="prev" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized">
<link rel="next" href="../container.html" title="Chapter&#160;8.&#160;Boost.Container">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -20,11 +21,11 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="../boost/circular_buffe_idp38268896.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="../boost/circular_buffe_idp24914528.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="idp138956112"></a>Index</h2></div></div></div>
+<a name="idp147059216"></a>Index</h2></div></div></div>
<p><a class="link" href="s14.html#idx_id_0">A</a> <a class="link" href="s14.html#idx_id_1">B</a> <a class="link" href="s14.html#idx_id_2">C</a> <a class="link" href="s14.html#idx_id_3">D</a> <a class="link" href="s14.html#idx_id_4">E</a> <a class="link" href="s14.html#idx_id_5">F</a> <a class="link" href="s14.html#idx_id_6">I</a> <a class="link" href="s14.html#idx_id_7">L</a> <a class="link" href="s14.html#idx_id_8">M</a> <a class="link" href="s14.html#idx_id_9">P</a> <a class="link" href="s14.html#idx_id_10">R</a> <a class="link" href="s14.html#idx_id_11">S</a> <a class="link" href="s14.html#idx_id_12">T</a> <a class="link" href="s14.html#idx_id_13">V</a> <a class="link" href="s14.html#idx_id_14">W</a></p>
<div class="variablelist"><dl class="variablelist">
<dt>
@@ -37,7 +38,7 @@
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">adjust_min_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">allocate</span></p>
@@ -47,7 +48,7 @@
<p><span class="index-entry-level-0">allocator_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -58,7 +59,7 @@
<p><span class="index-entry-level-0">array_range</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -69,7 +70,7 @@
<p><span class="index-entry-level-0">assign</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -92,20 +93,20 @@
<p><span class="index-entry-level-0">back</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">begin</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">BOOST_CB_DISABLE_DEBUG</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="implementation.html" title="Implementation"><span class="index-entry-level-1">Implementation </span></a></p></li>
</ul></div>
</li>
@@ -120,26 +121,26 @@
<dd><div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">capacity_control</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">capacity_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">check_high_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">check_low_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">circular_buffer_space_optimized</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Class template circular_buffer</span></p>
@@ -214,55 +215,55 @@
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Class template circular_buffer_space_optimized</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">adjust_min_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">allocator_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">array_range</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">assign</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">back</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">begin</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">BOOST_CB_DISABLE_DEBUG</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_control</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_high_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_low_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">circular_buffer_space_optimized</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">clear</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_array_range</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_pointer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reference</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reverse_iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">difference_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">end</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">erase</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">front</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">init_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">insert</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Linear</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">param_value_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pointer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_back</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_front</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_back</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_front</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reduce_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reference</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rerase</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reverse_iterator</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rinsert</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rset_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rvalue_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">set_capacity</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">size_type</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">value_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">adjust_min_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">allocator_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">array_range</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">assign</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">back</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">begin</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">BOOST_CB_DISABLE_DEBUG</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_control</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">capacity_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_high_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">check_low_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">clear</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_array_range</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_pointer</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reference</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">const_reverse_iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">difference_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">end</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">erase</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">front</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">init_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">insert</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Linear</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">param_value_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pointer</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_back</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">pop_front</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_back</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">push_front</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reduce_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reference</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rerase</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">reverse_iterator</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rinsert</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rset_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">rvalue_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">set_capacity</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">size_type</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">value_type</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">clear</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="release.html" title="Release Notes"><span class="index-entry-level-1">Release Notes</span></a></p></li>
</ul></div>
</li>
@@ -274,35 +275,35 @@
<p><span class="index-entry-level-0">const_array_range</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_pointer</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_reference</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">const_reverse_iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -342,7 +343,7 @@
<p><span class="index-entry-level-0">difference_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
</ul></div></dd>
@@ -354,14 +355,14 @@
<p><span class="index-entry-level-0">end</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">erase</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -387,33 +388,33 @@
<p><span class="index-entry-level-0">front</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="implementation.html" title="Implementation"><span class="index-entry-level-1">Implementation </span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator!=</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38190880.html" title="Function template operator!="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24836512.html" title="Function template operator!="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&gt;</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp38205040.html" title="Function template operator&gt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24850672.html" title="Function template operator&gt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&gt;=</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38233392.html" title="Function template operator&gt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24879024.html" title="Function template operator&gt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&lt;</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp38177536.html" title="Function template operator&lt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24823168.html" title="Function template operator&lt;"><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator&lt;=</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38219216.html" title="Function template operator&lt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24864848.html" title="Function template operator&lt;="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">Function template operator==</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38164112.html" title="Function template operator=="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24809744.html" title="Function template operator=="><span class="index-entry-level-1">Linear</span></a></p></li></ul></div>
</li>
</ul></div></dd>
<dt>
@@ -440,13 +441,13 @@
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">init_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">insert</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -465,7 +466,7 @@
<p><span class="index-entry-level-0">iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
</ul></div></dd>
@@ -477,13 +478,13 @@
<p><span class="index-entry-level-0">Linear</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38190880.html" title="Function template operator!="><span class="index-entry-level-1">Function template operator!=</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp38205040.html" title="Function template operator&gt;"><span class="index-entry-level-1">Function template operator&gt;</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38233392.html" title="Function template operator&gt;="><span class="index-entry-level-1">Function template operator&gt;=</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp38177536.html" title="Function template operator&lt;"><span class="index-entry-level-1">Function template operator&lt;</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38219216.html" title="Function template operator&lt;="><span class="index-entry-level-1">Function template operator&lt;=</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp38164112.html" title="Function template operator=="><span class="index-entry-level-1">Function template operator==</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24836512.html" title="Function template operator!="><span class="index-entry-level-1">Function template operator!=</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24850672.html" title="Function template operator&gt;"><span class="index-entry-level-1">Function template operator&gt;</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24879024.html" title="Function template operator&gt;="><span class="index-entry-level-1">Function template operator&gt;=</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator_idp24823168.html" title="Function template operator&lt;"><span class="index-entry-level-1">Function template operator&lt;</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24864848.html" title="Function template operator&lt;="><span class="index-entry-level-1">Function template operator&lt;=</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/operator___idp24809744.html" title="Function template operator=="><span class="index-entry-level-1">Function template operator==</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -536,21 +537,21 @@
<p><span class="index-entry-level-0">param_value_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">pointer</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">pop_back</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="implementation.html" title="Implementation"><span class="index-entry-level-1">Implementation </span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
@@ -559,14 +560,14 @@
<p><span class="index-entry-level-0">pop_front</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">push_back</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -577,7 +578,7 @@
<p><span class="index-entry-level-0">push_front</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
</li>
@@ -592,13 +593,13 @@
<dd><div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">reduce_capacity</span></p>
-<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
+<div class="index"><ul class="index" style="list-style-type: none; "><li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li></ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">reference</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -618,7 +619,7 @@
<p><span class="index-entry-level-0">rerase</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -629,14 +630,14 @@
<p><span class="index-entry-level-0">reverse_iterator</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">rinsert</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
@@ -658,14 +659,14 @@
<p><span class="index-entry-level-0">rset_capacity</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">rvalue_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
</ul></div></dd>
@@ -677,14 +678,14 @@
<p><span class="index-entry-level-0">set_capacity</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
</ul></div>
</li>
<li class="listitem" style="list-style-type: none">
<p><span class="index-entry-level-0">size_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
</li>
@@ -713,7 +714,7 @@
<p><span class="index-entry-level-0">value_type</span></p>
<div class="index"><ul class="index" style="list-style-type: none; ">
<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer"><span class="index-entry-level-1">Class template circular_buffer</span></a></p></li>
-<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp38268896.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
+<li class="listitem" style="list-style-type: none"><p><a class="link" href="../boost/circular_buffe_idp24914528.html" title="Class template circular_buffer_space_optimized"><span class="index-entry-level-1">Class template circular_buffer_space_optimized</span></a></p></li>
<li class="listitem" style="list-style-type: none"><p><a class="link" href="examples.html" title="More Examples"><span class="index-entry-level-1">More Examples</span></a></p></li>
</ul></div>
</li></ul></div></dd>
@@ -736,7 +737,7 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="../boost/circular_buffe_idp38268896.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="../boost/circular_buffe_idp24914528.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../container.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
diff --git a/doc/html/circular_buffer/template_params.html b/doc/html/circular_buffer/template_params.html
index 91551e5c81..fd6f6a6634 100644
--- a/doc/html/circular_buffer/template_params.html
+++ b/doc/html/circular_buffer/template_params.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
diff --git a/doc/html/circular_buffer/tickets.html b/doc/html/circular_buffer/tickets.html
index c7d2549a41..23d084582b 100644
--- a/doc/html/circular_buffer/tickets.html
+++ b/doc/html/circular_buffer/tickets.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
diff --git a/doc/html/circular_buffer/version_id.html b/doc/html/circular_buffer/version_id.html
index 40e147a073..ef29c63ff8 100644
--- a/doc/html/circular_buffer/version_id.html
+++ b/doc/html/circular_buffer/version_id.html
@@ -1,3 +1,4 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
@@ -27,7 +28,7 @@
<a name="circular_buffer.version_id"></a><a class="link" href="version_id.html" title="Documentation Version Info">Documentation Version Info</a>
</h2></div></div></div>
<p>
- Last edit to Quickbook file circular_buffer.qbk was at 11:48:45 PM on 2015-Apr-07.
+ Last edit to Quickbook file circular_buffer.qbk was at 10:04:50 AM on 2015-Aug-04.
</p>
<div class="tip"><table border="0" summary="Tip">
<tr>