diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-10-06 10:38:45 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-10-06 10:39:52 +0900 |
commit | 5cde13f21d36c7224b0e13d11c4b49379ae5210d (patch) | |
tree | e8269ac85a4b0f7d416e2565fa4f451b5cb41351 /doc/html/array.html | |
parent | d9ec475d945d3035377a0d89ed42e382d8988891 (diff) | |
download | boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.tar.gz boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.tar.bz2 boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.zip |
Imported Upstream version 1.61.0
Change-Id: I96a1f878d1e6164f01e9aadd5147f38fca448d90
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'doc/html/array.html')
-rw-r--r-- | doc/html/array.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/array.html b/doc/html/array.html index fa33aafdef..fcebe5b289 100644 --- a/doc/html/array.html +++ b/doc/html/array.html @@ -4,7 +4,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Chapter 4. Boost.Array</title> <link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.76.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"> @@ -32,7 +32,7 @@ </h3></div></div> <div><p class="copyright">Copyright © 2001-2004 Nicolai M. Josuttis</p></div> <div><div class="legalnotice"> -<a name="idm45555445531648"></a><p>Distributed under the Boost Software License, Version 1.0. +<a name="idp39477760"></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 class="toc"> +<dl> <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 compact" style="list-style-type: disc; "> +<div class="itemizedlist"><ul class="itemizedlist" type="disc" compact> <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_idm45507162621920.html" title="Function swap">swap</a></code>() has no constant complexity.</li> +<code class="computeroutput"><a class="link" href="boost/swap_idp6051440.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#idm45507162983296-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#idp9053552-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 compact" style="list-style-type: disc; "> +<div class="itemizedlist"><ul class="itemizedlist" type="disc" compact> <li class="listitem"> -<code class="computeroutput"><a class="link" href="boost/array.html#idm45507162961280-bb">front</a></code>() and <code class="computeroutput"><a class="link" href="boost/array.html#idm45507162956640-bb">back</a></code>() are provided.</li> +<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> <li class="listitem"> -<code class="computeroutput"><a class="link" href="boost/array.html#idm45507162975808-bb">operator[]</a></code> and <code class="computeroutput"><a class="link" href="boost/array.html#idm45507162968544-bb">at</a></code>() are provided.</li> +<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> </ul></div> <p> </p> |