|
24 | 24 | tuple<T const&, T const&> >
|
25 | 25 | minmax(const T& a, const T& b);
|
26 | 26 |
|
27 |
| - template <class T, class <a href="http://www.sgi.com/tech/stl/ BinaryPredicate.html">BinaryPredicate</a>> |
| 27 | + template <class T, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
28 | 28 | tuple<T const&, T const&> >
|
29 | 29 | minmax(const T& a, const T& b, BinaryPredicate comp);
|
30 | 30 |
|
|
38 | 38 |
|
39 | 39 | namespace boost {
|
40 | 40 |
|
41 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 41 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
42 | 42 | std::pair<ForwardIterator,ForwardIterator>
|
43 | 43 | minmax_element(ForwardIterator first, ForwardIterator last);
|
44 | 44 |
|
45 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 45 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
46 | 46 | std::pair<ForwardIterator,ForwardIterator>
|
47 | 47 | minmax_element(ForwardIterator first, ForwardIterator last,
|
48 | 48 | BinaryPredicate comp);
|
49 | 49 |
|
50 | 50 | // Variants
|
51 | 51 |
|
52 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 52 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
53 | 53 | ForwardIterator first_min_element(ForwardIterator first, ForwardIterator last);
|
54 | 54 |
|
55 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 55 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
56 | 56 | ForwardIterator first_min_element(ForwardIterator first, ForwardIterator last,
|
57 | 57 | BinaryPredicate comp);
|
58 | 58 |
|
59 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 59 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
60 | 60 | ForwardIterator last_min_element(ForwardIterator first, ForwardIterator last);
|
61 | 61 |
|
62 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 62 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
63 | 63 | ForwardIterator last_min_element(ForwardIterator first, ForwardIterator last,
|
64 | 64 | BinaryPredicate comp);
|
65 | 65 |
|
66 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 66 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
67 | 67 | ForwardIterator first_max_element(ForwardIterator first, ForwardIterator last);
|
68 | 68 |
|
69 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 69 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
70 | 70 | ForwardIterator first_max_element(ForwardIterator first, ForwardIterator last,
|
71 | 71 | BinaryPredicate comp);
|
72 | 72 |
|
73 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 73 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
74 | 74 | ForwardIterator last_max_element(ForwardIterator first, ForwardIterator last);
|
75 | 75 |
|
76 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 76 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
77 | 77 | ForwardIterator last_max_element(ForwardIterator first, ForwardIterator last,
|
78 | 78 | BinaryPredicate comp);
|
79 | 79 |
|
80 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 80 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
81 | 81 | std::pair<ForwardIterator,ForwardIterator>
|
82 | 82 | first_min_first_max_element(ForwardIterator first, ForwardIterator last);
|
83 | 83 |
|
84 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 84 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
85 | 85 | std::pair<ForwardIterator,ForwardIterator>
|
86 | 86 | first_min_first_max_element(ForwardIterator first, ForwardIterator last,
|
87 | 87 | BinaryPredicate comp);
|
88 | 88 |
|
89 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 89 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
90 | 90 | std::pair<ForwardIterator,ForwardIterator>
|
91 | 91 | first_min_last_max_element(ForwardIterator first, ForwardIterator last);
|
92 | 92 |
|
93 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 93 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
94 | 94 | std::pair<ForwardIterator,ForwardIterator>
|
95 | 95 | first_min_last_max_element(ForwardIterator first, ForwardIterator last,
|
96 | 96 | BinaryPredicate comp);
|
97 | 97 |
|
98 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 98 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
99 | 99 | std::pair<ForwardIterator,ForwardIterator>
|
100 | 100 | last_min_first_max_element(ForwardIterator first, ForwardIterator last);
|
101 | 101 |
|
102 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 102 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
103 | 103 | std::pair<ForwardIterator,ForwardIterator>
|
104 | 104 | last_min_first_max_element(ForwardIterator first, ForwardIterator last,
|
105 | 105 | BinaryPredicate comp);
|
106 | 106 |
|
107 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>> |
| 107 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>> |
108 | 108 | std::pair<ForwardIterator,ForwardIterator>
|
109 | 109 | last_min_last_max_element(ForwardIterator first, ForwardIterator last);
|
110 | 110 |
|
111 |
| - template <class <a href="http://www.sgi.com/tech/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="http://www.sgi.com/tech/stl/BinaryPredicate.html">BinaryPredicate</a>> |
| 111 | + template <class <a href="https://www.boost.org/sgi/stl/ForwardIterator.html">ForwardIterator</a>, class <a href="https://www.boost.org/sgi/stl/BinaryPredicate.html">BinaryPredicate</a>> |
112 | 112 | std::pair<ForwardIterator,ForwardIterator>
|
113 | 113 | last_min_last_max_element(ForwardIterator first, ForwardIterator last,
|
114 | 114 | BinaryPredicate comp);
|
|
0 commit comments