diff options
Diffstat (limited to 'doc/html/array.html')
-rw-r--r-- | doc/html/array.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/array.html b/doc/html/array.html index fcebe5b289..5c8c62decd 100644 --- a/doc/html/array.html +++ b/doc/html/array.html @@ -2,9 +2,9 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> -<title>Chapter 4. Boost.Array</title> +<title>Chapter 5. Boost.Array</title> <link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="libraries.html" title="Part I. The Boost C++ Libraries (BoostBook Subset)"> <link rel="prev" href="any/s04.html" title="Acknowledgements"> @@ -26,13 +26,13 @@ <div class="chapter"> <div class="titlepage"><div> <div><h2 class="title"> -<a name="array"></a>Chapter 4. Boost.Array</h2></div> +<a name="array"></a>Chapter 5. Boost.Array</h2></div> <div><div class="author"><h3 class="author"> <span class="firstname">Nicolai</span> <span class="surname">Josuttis</span> </h3></div></div> <div><p class="copyright">Copyright © 2001-2004 Nicolai M. Josuttis</p></div> <div><div class="legalnotice"> -<a name="idp39477760"></a><p>Distributed under the Boost Software License, Version 1.0. +<a name="idm45928153234784"></a><p>Distributed under the Boost Software License, Version 1.0. (See accompanying file <code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> @@ -40,7 +40,7 @@ </div></div> <div class="toc"> <p><b>Table of Contents</b></p> -<dl> +<dl class="toc"> <dt><span class="section"><a href="array.html#array.intro">Introduction</a></span></dt> <dt><span class="section"><a href="array/reference.html">Reference</a></span></dt> <dd><dl><dt><span class="section"><a href="array/reference.html#header.boost.array_hpp">Header <boost/array.hpp></a></span></dt></dl></dd> @@ -89,24 +89,24 @@ Standard). The reasons array is not an reversible STL container is because: </p> -<div class="itemizedlist"><ul class="itemizedlist" type="disc" compact> +<div class="itemizedlist"><ul class="itemizedlist compact" style="list-style-type: disc; "> <li class="listitem">No constructors are provided.</li> <li class="listitem">Elements may have an undetermined initial value (see <a class="xref" href="array/rationale.html" title="Design Rationale">the section called “Design Rationale”</a>).</li> <li class="listitem"> -<code class="computeroutput"><a class="link" href="boost/swap_idp6051440.html" title="Function swap">swap</a></code>() has no constant complexity.</li> +<code class="computeroutput"><a class="link" href="boost/swap_idm46563494300416.html" title="Function swap">swap</a></code>() has no constant complexity.</li> <li class="listitem"> -<code class="computeroutput"><a class="link" href="boost/array.html#idp9053552-bb">size</a></code>() is always constant, based on the second template argument of the type.</li> +<code class="computeroutput"><a class="link" href="boost/array.html#idm46563494209840-bb">size</a></code>() is always constant, based on the second template argument of the type.</li> <li class="listitem">The container provides no allocator support.</li> </ul></div> <p> </p> <p>It doesn't fulfill the requirements of a "sequence" (see Section 23.1.1, [lib.sequence.reqmts] of the C++ Standard), except that: </p> -<div class="itemizedlist"><ul class="itemizedlist" type="disc" compact> +<div class="itemizedlist"><ul class="itemizedlist compact" style="list-style-type: disc; "> <li class="listitem"> -<code class="computeroutput"><a class="link" href="boost/array.html#idp7291504-bb">front</a></code>() and <code class="computeroutput"><a class="link" href="boost/array.html#idp7296144-bb">back</a></code>() are provided.</li> +<code class="computeroutput"><a class="link" href="boost/array.html#idm46563494190576-bb">front</a></code>() and <code class="computeroutput"><a class="link" href="boost/array.html#idm46563494186512-bb">back</a></code>() are provided.</li> <li class="listitem"> -<code class="computeroutput"><a class="link" href="boost/array.html#idp9061040-bb">operator[]</a></code> and <code class="computeroutput"><a class="link" href="boost/array.html#idp7284240-bb">at</a></code>() are provided.</li> +<code class="computeroutput"><a class="link" href="boost/array.html#idm46563494203248-bb">operator[]</a></code> and <code class="computeroutput"><a class="link" href="boost/array.html#idm46563494196912-bb">at</a></code>() are provided.</li> </ul></div> <p> </p> |