mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
fix invalid bookmarks
[SVN r16823]
This commit is contained in:
parent
119c64be0b
commit
683701cd07
16
utility.htm
16
utility.htm
@ -17,9 +17,9 @@
|
|||||||
Function templates <a href="#checked_delete">checked_delete() and
|
Function templates <a href="#checked_delete">checked_delete() and
|
||||||
checked_array_delete()</a></li>
|
checked_array_delete()</a></li>
|
||||||
<li>
|
<li>
|
||||||
Function templates <a href="#functions next">next() and prior()</a></li>
|
Function templates <a href="#functions_next_prior">next() and prior()</a></li>
|
||||||
<li>
|
<li>
|
||||||
Class <a href="#Class noncopyable">noncopyable</a></li>
|
Class <a href="#Class_noncopyable">noncopyable</a></li>
|
||||||
<li>
|
<li>
|
||||||
Function template <a href="#addressof">addressof()</a></li>
|
Function template <a href="#addressof">addressof()</a></li>
|
||||||
<li>
|
<li>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
checked_array_delete()</h2>
|
checked_array_delete()</h2>
|
||||||
<p>See <a href="checked_delete.html">separate documentation</a>.</p>
|
<p>See <a href="checked_delete.html">separate documentation</a>.</p>
|
||||||
<h2>
|
<h2>
|
||||||
<a name="functions next">Function</a> templates next() and prior()</h2>
|
<a name="functions_next_prior">Function</a> templates next() and prior()</h2>
|
||||||
<p>Certain data types, such as the C++ Standard Library's forward and bidirectional
|
<p>Certain data types, such as the C++ Standard Library's forward and bidirectional
|
||||||
iterators, do not provide addition and subtraction via operator+() or
|
iterators, do not provide addition and subtraction via operator+() or
|
||||||
operator-(). This means that non-modifying computation of the next or
|
operator-(). This means that non-modifying computation of the next or
|
||||||
@ -51,7 +51,7 @@ T prior(T x) { return --x; }</pre>
|
|||||||
const std::list<T>::iterator prev = boost::prior(p);</pre>
|
const std::list<T>::iterator prev = boost::prior(p);</pre>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p>Contributed by <a href="../../people/dave_abrahams.htm">Dave Abrahams</a>.</p>
|
<p>Contributed by <a href="../../people/dave_abrahams.htm">Dave Abrahams</a>.</p>
|
||||||
<h2><a name="Class noncopyable">Class noncopyable</a></h2>
|
<h2><a name="Class_noncopyable">Class noncopyable</a></h2>
|
||||||
<p>Class <strong>noncopyable</strong> is a base class. Derive your own class
|
<p>Class <strong>noncopyable</strong> is a base class. Derive your own class
|
||||||
from <strong>noncopyable</strong> when you want to prohibit copy construction
|
from <strong>noncopyable</strong> when you want to prohibit copy construction
|
||||||
and copy assignment.</p>
|
and copy assignment.</p>
|
||||||
@ -90,8 +90,7 @@ class ResourceLadenFileSystem : boost::noncopyable {
|
|||||||
<h2><a name="addressof">Function template addressof()</a></h2>
|
<h2><a name="addressof">Function template addressof()</a></h2>
|
||||||
<p>Function <strong>addressof()</strong> returns the address of an object.</p>
|
<p>Function <strong>addressof()</strong> returns the address of an object.</p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<pre>
|
<pre>template <typename T> inline T* addressof(T& v);
|
||||||
template <typename T> inline T* addressof(T& v);
|
|
||||||
template <typename T> inline const T* addressof(const T& v);
|
template <typename T> inline const T* addressof(const T& v);
|
||||||
template <typename T> inline volatile T* addressof(volatile T& v);
|
template <typename T> inline volatile T* addressof(volatile T& v);
|
||||||
template <typename T> inline const volatile T* addressof(const volatile T& v);
|
template <typename T> inline const volatile T* addressof(const volatile T& v);
|
||||||
@ -127,8 +126,7 @@ void f() {
|
|||||||
<p>See <a href="tie.html">separate documentation</a>.</p>
|
<p>See <a href="tie.html">separate documentation</a>.</p>
|
||||||
<hr>
|
<hr>
|
||||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan
|
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan
|
||||||
-->
|
-->09 January, 2003<!--webbot bot="Timestamp" endspan i-checksum="38582"
|
||||||
10 September, 2001<!--webbot bot="Timestamp" endspan i-checksum="39328"
|
|
||||||
-->
|
-->
|
||||||
</p>
|
</p>
|
||||||
<p>© Copyright boost.org 1999-2002. Permission to copy, use, modify, sell and distribute
|
<p>© Copyright boost.org 1999-2002. Permission to copy, use, modify, sell and distribute
|
||||||
@ -136,4 +134,4 @@ void f() {
|
|||||||
This document is provided "as is" without express or implied
|
This document is provided "as is" without express or implied
|
||||||
warranty, and with no claim as to its suitability for any purpose.</p>
|
warranty, and with no claim as to its suitability for any purpose.</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
x
Reference in New Issue
Block a user