Imported Upstream version 1.57.0
[platform/upstream/boost.git] / doc / html / array.html
index 8bc359f..df73839 100644 (file)
@@ -1,9 +1,9 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
-<title>Chapter&#160;3.&#160;Boost.Array</title>
+<title>Chapter&#160;4.&#160;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.78.1">
 <link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
 <link rel="up" href="libraries.html" title="Part&#160;I.&#160;The Boost C++ Libraries (BoostBook Subset)">
 <link rel="prev" href="any/s04.html" title="Acknowledgements">
 <div class="chapter">
 <div class="titlepage"><div>
 <div><h2 class="title">
-<a name="array"></a>Chapter&#160;3.&#160;Boost.Array</h2></div>
+<a name="array"></a>Chapter&#160;4.&#160;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 &#169; 2001-2004 Nicolai M. Josuttis</p></div>
 <div><div class="legalnotice">
-<a name="id1031580"></a><p>Distributed under the Boost Software License, Version 1.0.
+<a name="idp121305728"></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>
@@ -39,7 +39,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 &lt;boost/array.hpp&gt;</a></span></dt></dl></dd>
@@ -77,7 +77,7 @@
     class simply <code class="computeroutput"><a class="link" href="boost/array.html" title="Class template array">array</a></code>.</p>
 <p>Note that this class is suggested to be part of the next
     Technical Report, which will extend the C++ Standard (see
-    <a href="http://std.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1548.htm" target="_top">http://std.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1548.htm</a>).</p>
+    <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2003/n1548.htm" target="_top">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2003/n1548.htm</a>).</p>
 <p>Update: <code class="computeroutput">std::array</code> is (as of C++11) part of the C++ standard.
     The differences between <code class="computeroutput">boost::array</code> and <code class="computeroutput">std::array</code> are minimal.
     If you are using C++11, you should consider using <code class="computeroutput">std::array</code> instead of <code class="computeroutput">boost::array</code>.
     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 &#8220;Design Rationale&#8221;</a>).</li>
 <li class="listitem">
-<code class="computeroutput"><a class="link" href="boost/array.html#boost.array.swap_id428907">swap</a></code>() has no constant complexity.</li>
+<code class="computeroutput"><a class="link" href="boost/swap_idp41185616.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#id428558-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#idp39146256-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#id428717-bb">front</a></code>() and <code class="computeroutput"><a class="link" href="boost/array.html#id428750-bb">back</a></code>() are provided.</li>
+<code class="computeroutput"><a class="link" href="boost/array.html#idp40065200-bb">front</a></code>() and <code class="computeroutput"><a class="link" href="boost/array.html#idp40069840-bb">back</a></code>() are provided.</li>
 <li class="listitem">
-<code class="computeroutput"><a class="link" href="boost/array.html#id428612-bb">operator[]</a></code> and <code class="computeroutput"><a class="link" href="boost/array.html#id428665-bb">at</a></code>() are provided.</li>
+<code class="computeroutput"><a class="link" href="boost/array.html#idp40050672-bb">operator[]</a></code> and <code class="computeroutput"><a class="link" href="boost/array.html#idp40057936-bb">at</a></code>() are provided.</li>
 </ul></div>
 <p>
     </p>
 </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: June 14, 2012 at 17:01:03 +0100</small></p></td>
+<td align="left"></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>