We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 588e2c8 commit 76627fbCopy full SHA for 76627fb
parser-inc/algorithm
@@ -25,7 +25,11 @@ namespace std {
25
constexpr const T &min(const T &a, const T &b);
26
template<class T>
27
constexpr const T &max(const T &a, const T &b);
28
+
29
+ template<class RandomIt>
30
+ void sort(RandomIt first, RandomIt last);
31
+ template<class RandomIt, class Compare>
32
+ void sort(RandomIt first, RandomIt last, Compare comp);
33
}
34
35
#endif
-
0 commit comments