diff --git a/libs/algorithm/minmax/index.html b/libs/algorithm/minmax/index.html
index 9a414e5..9b0312a 100644
|
a
|
b
|
Synopsis of <tt><boost/algorithm/minmax.hpp></tt></h3>
|
| 92 | 92 | namespace boost { |
| 93 | 93 | |
| 94 | 94 | template <class T> |
| 95 | | tuple<T const&, T const&> > |
| | 95 | tuple<T const&, T const&> |
| 96 | 96 | minmax(const T& a, const T& b); |
| 97 | 97 | |
| 98 | 98 | template <class T, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 99 | | tuple<T const&, T const&> > |
| | 99 | tuple<T const&, T const&> |
| 100 | 100 | minmax(const T& a, const T& b, BinaryPredicate comp); |
| 101 | 101 | |
| 102 | 102 | } |