Cleanup html, dates, grammar, synopsis code. --Herve'

[SVN r23339]
This commit is contained in:
Hervé Brönnimann
2004-07-04 22:08:29 +00:00
parent 113c676eef
commit 9dcf3e6b76
2 changed files with 35 additions and 27 deletions

View File

@ -11,28 +11,32 @@
<center>
<h1>
Minmax_element</h1></center>
Minmax_element complete synopsis</h1></center>
<h3>
Synopsis of <tt>&amp;boost/algorithm/minmax.hpp></tt></h3>
Synopsis of <tt>&lt;boost/algorithm/minmax.hpp></tt></h3>
<pre>namespace boost {
<pre>#include &lt;boost/tuple/tuple.hpp>
#include &lt;boost/tuple/tuple.hpp>
namespace boost {
template &lt;class T>
std::tuple&lt;T const&amp;, T const&amp;> >
tuple&lt;T const&amp;, T const&amp;> >
minmax(const T&amp; a, const T&amp; b);
template &lt;class T, class <a href="http://www.sgi.com/tech/stl/ BinaryPredicate.html">BinaryPredicate</a>>
std::tuple&lt;T const&amp;, T const&amp;> >
tuple&lt;T const&amp;, T const&amp;> >
minmax(const T&amp; a, const T&amp; b, BinaryPredicate comp);
}
</pre>
<h3>
Synopsis of <tt>&amp;boost/algorithm/minmax_element.hpp></tt></h3>
Synopsis of <tt>&lt;boost/algorithm/minmax_element.hpp></tt></h3>
<pre>namespace boost {
<pre>#include &lt;utility> //for std::pair
namespace boost {
template &lt;class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>>
std::pair&lt;ForwardIterator,ForwardIterator>