Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82444 - in sandbox/static_vector/doc: generated html html/static_vector html/static_vector/static_vector
From: adam.wulkiewicz_at_[hidden]
Date: 2013-01-10 21:30:29


Author: awulkiew
Date: 2013-01-10 21:30:28 EST (Thu, 10 Jan 2013)
New Revision: 82444
URL: http://svn.boost.org/trac/boost/changeset/82444

Log:
Added missing paragraphs
Text files modified:
   sandbox/static_vector/doc/generated/static_vector.qbk | 6
   sandbox/static_vector/doc/html/index.html | 4
   sandbox/static_vector/doc/html/static_vector/static_vector.html | 2
   sandbox/static_vector/doc/html/static_vector/static_vector/introduction.html | 2
   sandbox/static_vector/doc/html/static_vector/static_vector/reference.html | 612 ++++++++++++++++++++-------------------
   5 files changed, 327 insertions(+), 299 deletions(-)

Modified: sandbox/static_vector/doc/generated/static_vector.qbk
==============================================================================
--- sandbox/static_vector/doc/generated/static_vector.qbk (original)
+++ sandbox/static_vector/doc/generated/static_vector.qbk 2013-01-10 21:30:28 EST (Thu, 10 Jan 2013)
@@ -10,6 +10,12 @@
 
 A static\u005fvector is a sequence that supports random access to elements, constant time insertion and removal of elements at the end, and linear time insertion and removal of elements at the beginning or in the middle. The number of elements in a static\u005fvector may vary dynamically up to a fixed capacity because elements are stored within the object itself similarly to an array. However, objects are initialized as they are inserted into static\u005fvector unlike C arrays or std::array which must construct all elements on instantiation. The behavior of static\u005fvector enables the use of statically allocated elements in cases with complex object lifetime requirements that would otherwise not be trivially possible.
 
+[heading Error Handling]
+Insertion beyond the capacity and out of bounds errors result in undefined behavior unless otherwise specified. In this respect if size() == capacity(), then static_vector::push_back() behaves like std::vector pop_front() if size() == empty(). The reason for this difference is because unlike vectors, static_vector does not perform allocation.
+
+[heading Advanced Usage]
+Error handling behavior can be modified to more closely match std::vector exception behavior when exceeding bounds by providing an alternate Strategy and static_vector_traits instantiation.
+
 [heading Header]
 `#include <boost/container/static_vector.hpp>`
 

Modified: sandbox/static_vector/doc/html/index.html
==============================================================================
--- sandbox/static_vector/doc/html/index.html (original)
+++ sandbox/static_vector/doc/html/index.html 2013-01-10 21:30:28 EST (Thu, 10 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Chapter&#160;1.&#160;StaticVector</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
 <link rel="home" href="index.html" title="Chapter&#160;1.&#160;StaticVector">
 <link rel="next" href="static_vector/static_vector.html" title="static_vector">
 </head>
@@ -49,7 +49,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: January 11, 2013 at 00:58:56 GMT</small></p></td>
+<td align="left"><p><small>Last revised: January 11, 2013 at 02:29:20 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: sandbox/static_vector/doc/html/static_vector/static_vector.html
==============================================================================
--- sandbox/static_vector/doc/html/static_vector/static_vector.html (original)
+++ sandbox/static_vector/doc/html/static_vector/static_vector.html 2013-01-10 21:30:28 EST (Thu, 10 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>static_vector</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
 <link rel="home" href="../index.html" title="Chapter&#160;1.&#160;StaticVector">
 <link rel="up" href="../index.html" title="Chapter&#160;1.&#160;StaticVector">
 <link rel="prev" href="../index.html" title="Chapter&#160;1.&#160;StaticVector">

Modified: sandbox/static_vector/doc/html/static_vector/static_vector/introduction.html
==============================================================================
--- sandbox/static_vector/doc/html/static_vector/static_vector/introduction.html (original)
+++ sandbox/static_vector/doc/html/static_vector/static_vector/introduction.html 2013-01-10 21:30:28 EST (Thu, 10 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Introduction</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;StaticVector">
 <link rel="up" href="../static_vector.html" title="static_vector">
 <link rel="prev" href="../static_vector.html" title="static_vector">

Modified: sandbox/static_vector/doc/html/static_vector/static_vector/reference.html
==============================================================================
--- sandbox/static_vector/doc/html/static_vector/static_vector/reference.html (original)
+++ sandbox/static_vector/doc/html/static_vector/static_vector/reference.html 2013-01-10 21:30:28 EST (Thu, 10 Jan 2013)
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Reference</title>
 <link rel="stylesheet" href="http://www.boost.org/doc/libs/release/doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;StaticVector">
 <link rel="up" href="../static_vector.html" title="static_vector">
 <link rel="prev" href="introduction.html" title="Introduction">
@@ -31,12 +31,12 @@
 <a name="staticvector.static_vector.reference.boost_container_static_vector"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector" title="boost::container::static_vector">boost::container::static_vector</a>
 </h4></div></div></div>
 <p>
- <a class="indexterm" name="id885135"></a><a class="indexterm" name="id885140"></a><a class="indexterm" name="id885145"></a>
+ <a class="indexterm" name="idp6205800"></a><a class="indexterm" name="idp6206144"></a><a class="indexterm" name="idp6206488"></a>
 A hybrid of <code class="literal">boost::container::vector</code> and <code class="literal">boost::array</code>.
         </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.description"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.description">Description</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.description"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.description">Description</a>
         </h6>
 <p>
           static_vector is a sequence container like boost::container::vector with
@@ -57,14 +57,36 @@
         </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.header"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.header">Header</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.error_handling"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.error_handling">Error
+ Handling</a>
         </h6>
 <p>
- <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">container</span><span class="special">/</span><span class="identifier">static_vector</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
+ Insertion beyond the capacity and out of bounds errors result in undefined
+ behavior unless otherwise specified. In this respect if size() == capacity(),
+ then static_vector::push_back() behaves like std::vector pop_front() if
+ size() == empty(). The reason for this difference is because unlike vectors,
+ static_vector does not perform allocation.
         </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.advanced_usage"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.advanced_usage">Advanced
+ Usage</a>
+ </h6>
+<p>
+ Error handling behavior can be modified to more closely match std::vector
+ exception behavior when exceeding bounds by providing an alternate Strategy
+ and static_vector_traits instantiation.
+ </p>
+<h6>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h3"></a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.header"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.header">Header</a>
+ </h6>
+<p>
+ <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">container</span><span class="special">/</span><span class="identifier">static_vector</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
+ </p>
+<h6>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h4"></a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.synopsis">Synopsis</a>
         </h6>
 <p>
 </p>
@@ -79,8 +101,8 @@
 <p>
         </p>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.template_parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.template_parameter_s_">Template
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h5"></a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.template_parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.template_parameter_s_">Template
           parameter(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
@@ -142,8 +164,8 @@
 </tbody>
 </table></div>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.typedef_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.typedef_s_">Typedef(s)</a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h6"></a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.typedef_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.typedef_s_">Typedef(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -310,8 +332,8 @@
 </tbody>
 </table></div>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h5"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.constructor_s__and_destructor"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.constructor_s__and_destructor">Constructor(s)
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h7"></a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.constructor_s__and_destructor"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.constructor_s__and_destructor">Constructor(s)
           and destructor</a>
         </h6>
 <div class="informaltable"><table class="table">
@@ -453,8 +475,8 @@
 </tbody>
 </table></div>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h6"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member_s_">Member(s)</a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h8"></a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member_s_">Member(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1124,7 +1146,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member0.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member0.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member0.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1133,14 +1155,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member0.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member0.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member0.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member0.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member0.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member0.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -1155,7 +1177,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1164,7 +1186,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1209,21 +1231,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.throws">Throws</a>
           </h6>
 <p>
             If Value's default constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1239,7 +1261,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1248,7 +1270,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1313,21 +1335,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1344,7 +1366,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1354,7 +1376,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1418,9 +1440,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">distance(first, last) &lt;= Capacity</code>
               </li>
@@ -1431,14 +1453,14 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.throws">Throws</a>
           </h6>
 <p>
             If Value's constructor taking a dereferenced Iterator throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1454,7 +1476,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member4.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1463,7 +1485,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member4.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1508,14 +1530,14 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member4.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member4.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1531,7 +1553,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1541,7 +1563,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1588,21 +1610,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">other.size() &lt;= Capacity</code>.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1619,7 +1641,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member8.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1628,7 +1650,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member8.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1673,9 +1695,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member8.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
                 is <code class="literal">true</code> and Value's move constructor throws.
@@ -1687,7 +1709,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member8.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1704,7 +1726,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1714,7 +1736,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1760,16 +1782,16 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">other.size() &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
                 is <code class="literal">true</code> and Value's move constructor throws.
@@ -1781,7 +1803,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1796,7 +1818,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member12.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member12.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member12.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1805,14 +1827,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member12.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member12.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member12.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12.throws">Throws</a>
           </h6>
 <p>
             Nothing
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member12.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member12.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member12.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1828,7 +1850,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member6.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1837,7 +1859,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member6.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1883,14 +1905,14 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member6.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor or copy assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member6.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1906,7 +1928,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -1916,7 +1938,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1963,21 +1985,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">other.size() &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor or copy assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -1994,7 +2016,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member10.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2003,7 +2025,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member10.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2048,9 +2070,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member10.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
                 is <code class="literal">true</code> and Value's move constructor or move assignment
@@ -2064,7 +2086,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member10.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2081,7 +2103,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2091,7 +2113,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2137,16 +2159,16 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">other.size() &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
                 is <code class="literal">true</code> and Value's move constructor or move assignment
@@ -2160,7 +2182,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2176,7 +2198,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member13.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2185,7 +2207,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member13.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2231,9 +2253,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member13.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
                 is <code class="literal">true</code> and Value's move constructor or move assignment
@@ -2247,7 +2269,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member13.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2263,7 +2285,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2273,7 +2295,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2320,16 +2342,16 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">other.size() &lt;= Capacity &amp;&amp; size() &lt;= other.capacity()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
                 is <code class="literal">true</code> and Value's move constructor or move assignment
@@ -2343,7 +2365,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2359,7 +2381,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2368,7 +2390,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2413,21 +2435,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.throws">Throws</a>
           </h6>
 <p>
             If Value's default constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2444,7 +2466,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2453,7 +2475,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2517,21 +2539,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2546,7 +2568,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2555,7 +2577,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2601,21 +2623,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -2631,7 +2653,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2640,7 +2662,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2685,21 +2707,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">size() &lt; Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -2715,7 +2737,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2724,7 +2746,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2769,21 +2791,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">size() &lt; Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.throws">Throws</a>
           </h6>
 <p>
             If Value's move constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -2798,7 +2820,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2807,21 +2829,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">!empty()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -2837,7 +2859,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2846,7 +2868,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2910,9 +2932,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
                 in range <code class="literal">[begin(), end()</code>].
@@ -2923,9 +2945,9 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If Value's copy constructor or copy assignment throws
               </li>
@@ -2935,7 +2957,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.complexity">Complexity</a>
           </h6>
 <p>
             Constant or linear.
@@ -2951,7 +2973,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -2960,7 +2982,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3024,9 +3046,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
                 in range <code class="literal">[begin(), end()</code>].
@@ -3037,14 +3059,14 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.throws">Throws</a>
           </h6>
 <p>
             If Value's move constructor or move assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.complexity">Complexity</a>
           </h6>
 <p>
             Constant or linear.
@@ -3060,7 +3082,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3071,7 +3093,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3152,9 +3174,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
                 in range <code class="literal">[begin(), end()</code>].
@@ -3165,9 +3187,9 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If Value's copy constructor or copy assignment throws.
               </li>
@@ -3177,7 +3199,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -3193,7 +3215,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3205,7 +3227,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3288,9 +3310,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
                 in range <code class="literal">[begin(), end()</code>].
@@ -3304,9 +3326,9 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.throws">Throws</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 If Value's constructor and assignment taking a dereferenced <code class="literal">Iterator</code>.
               </li>
@@ -3316,7 +3338,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -3331,7 +3353,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3340,7 +3362,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3385,7 +3407,7 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
@@ -3393,14 +3415,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.throws">Throws</a>
           </h6>
 <p>
             If Value's move assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -3416,7 +3438,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3425,7 +3447,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3491,9 +3513,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">first</code> and <code class="literal">last</code> must define
                 a valid range
@@ -3504,14 +3526,14 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.throws">Throws</a>
           </h6>
 <p>
             If Value's move assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -3527,7 +3549,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3537,7 +3559,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3603,21 +3625,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">distance(first, last) &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor or copy assignment throws,
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -3633,7 +3655,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3642,7 +3664,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3706,21 +3728,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.throws">Throws</a>
           </h6>
 <p>
             If Value's copy constructor or copy assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.complexity">Complexity</a>
           </h6>
 <p>
             Linear O(N).
@@ -3737,7 +3759,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3747,7 +3769,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3793,21 +3815,21 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">size() &lt; Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.throws">Throws</a>
           </h6>
 <p>
             If in-place constructor throws or Value's move constructor throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -3824,7 +3846,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3834,7 +3856,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3898,9 +3920,9 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.precondition_s_">Precondition(s)</a>
           </h6>
-<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
                 <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
                 in range <code class="literal">[begin(), end()</code>]
@@ -3911,7 +3933,7 @@
 </ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.throws">Throws</a>
           </h6>
 <p>
             If in-place constructor throws or if Value's move constructor or move
@@ -3919,7 +3941,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.complexity">Complexity</a>
           </h6>
 <p>
             Constant or linear.
@@ -3934,7 +3956,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member31.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member31.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member31.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3943,14 +3965,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member31.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member31.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member31.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member31.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member31.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member31.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -3965,7 +3987,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -3974,7 +3996,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4019,28 +4041,28 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.returns">Returns</a>
           </h6>
 <p>
             reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.throws">Throws</a>
           </h6>
 <p>
             <code class="literal">std::out_of_range</code> exception by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h5"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4055,7 +4077,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4064,7 +4086,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4109,28 +4131,28 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.returns">Returns</a>
           </h6>
 <p>
             const reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.throws">Throws</a>
           </h6>
 <p>
             <code class="literal">std::out_of_range</code> exception by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h5"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4145,7 +4167,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4154,7 +4176,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4199,28 +4221,28 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.returns">Returns</a>
           </h6>
 <p>
             reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h5"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4235,7 +4257,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4244,7 +4266,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.parameter_s_">Parameter(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4289,28 +4311,28 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.returns">Returns</a>
           </h6>
 <p>
             const reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h5"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4325,7 +4347,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4334,28 +4356,28 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.returns">Returns</a>
           </h6>
 <p>
             reference to the first element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4370,7 +4392,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4379,28 +4401,28 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.returns">Returns</a>
           </h6>
 <p>
             const reference to the first element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4415,7 +4437,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4424,28 +4446,28 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.returns">Returns</a>
           </h6>
 <p>
             reference to the last element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4460,7 +4482,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4469,28 +4491,28 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.precondition_s_">Precondition(s)</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
             <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.returns">Returns</a>
           </h6>
 <p>
             const reference to the last element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.throws">Throws</a>
           </h6>
 <p>
             Nothing by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h4"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4506,7 +4528,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member40.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member40.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member40.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4515,14 +4537,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member40.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member40.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member40.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member40.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member40.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member40.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4538,7 +4560,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member41.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member41.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member41.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4547,14 +4569,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member41.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member41.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member41.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member41.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member41.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member41.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4569,7 +4591,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member42.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4578,21 +4600,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member42.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.returns">Returns</a>
           </h6>
 <p>
             iterator to the first element contained in the vector.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member42.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member42.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member42.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4607,7 +4629,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member43.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4616,21 +4638,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member43.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.returns">Returns</a>
           </h6>
 <p>
             const_iterator to the first element contained in the vector.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member43.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member43.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member43.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4645,7 +4667,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member44.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4654,21 +4676,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member44.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.returns">Returns</a>
           </h6>
 <p>
             const_iterator to the first element contained in the vector.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member44.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member44.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member44.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4683,7 +4705,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member45.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4692,7 +4714,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member45.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.returns">Returns</a>
           </h6>
 <p>
             iterator pointing to the one after the last element contained in the
@@ -4700,14 +4722,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member45.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member45.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member45.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4722,7 +4744,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member46.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4731,7 +4753,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member46.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.returns">Returns</a>
           </h6>
 <p>
             const_iterator pointing to the one after the last element contained in
@@ -4739,14 +4761,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member46.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member46.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member46.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4761,7 +4783,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member47.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4770,7 +4792,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member47.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.returns">Returns</a>
           </h6>
 <p>
             const_iterator pointing to the one after the last element contained in
@@ -4778,14 +4800,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member47.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member47.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member47.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4800,7 +4822,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member48.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4809,21 +4831,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member48.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.returns">Returns</a>
           </h6>
 <p>
             reverse_iterator pointing to the beginning of the reversed static_vector.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member48.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member48.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member48.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4838,7 +4860,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member49.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4847,21 +4869,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member49.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.returns">Returns</a>
           </h6>
 <p>
             const_reverse_iterator pointing to the beginning of the reversed static_vector.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member49.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member49.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member49.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4876,7 +4898,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member50.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4885,21 +4907,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member50.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.returns">Returns</a>
           </h6>
 <p>
             const_reverse_iterator pointing to the beginning of the reversed static_vector.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member50.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member50.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member50.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4915,7 +4937,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member51.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4924,7 +4946,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member51.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.returns">Returns</a>
           </h6>
 <p>
             reverse_iterator pointing to the one after the last element of the reversed
@@ -4932,14 +4954,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member51.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member51.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member51.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4955,7 +4977,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member52.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -4964,7 +4986,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member52.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.returns">Returns</a>
           </h6>
 <p>
             const_reverse_iterator pointing to the one after the last element of
@@ -4972,14 +4994,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member52.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member52.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member52.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -4995,7 +5017,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member53.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -5004,7 +5026,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member53.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.returns">Returns</a>
           </h6>
 <p>
             const_reverse_iterator pointing to the one after the last element of
@@ -5012,14 +5034,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member53.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member53.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member53.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -5034,7 +5056,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member54.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -5043,21 +5065,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member54.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.returns">Returns</a>
           </h6>
 <p>
             container's capacity.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member54.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member54.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member54.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -5072,7 +5094,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member55.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -5081,21 +5103,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member55.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.returns">Returns</a>
           </h6>
 <p>
             container's capacity.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member55.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member55.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member55.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -5110,7 +5132,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member56.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -5119,21 +5141,21 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member56.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.returns">Returns</a>
           </h6>
 <p>
             Number of elements contained in the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member56.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member56.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member56.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -5148,7 +5170,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member57.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -5157,7 +5179,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member57.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.returns">Returns</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.returns">Returns</a>
           </h6>
 <p>
             true if the number of elements contained in the container is equal to
@@ -5165,14 +5187,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member57.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member57.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member57.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).
@@ -5187,7 +5209,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member58.h0"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member58.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58.synopsis">Synopsis</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member58.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58.synopsis">Synopsis</a>
           </h6>
 <p>
 </p>
@@ -5196,14 +5218,14 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member58.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member58.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58.throws">Throws</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member58.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58.throws">Throws</a>
           </h6>
 <p>
             Nothing.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member58.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member58.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58.complexity">Complexity</a>
+ <span><a name="staticvector.static_vector.reference.boost_container_static_vector.member58.complexity"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58.complexity">Complexity</a>
           </h6>
 <p>
             Constant O(1).


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk