#include <functional>
Go to the source code of this file.
|
template<typename ForwardIterator , typename Comparator > |
ForwardIterator | is_sorted_until_cmp (ForwardIterator first, ForwardIterator last, Comparator cmp) |
| Checks if a range is sorted using a three-way Comparator (with memcmp() semantics). More...
|
|
template<typename ForwardIterator , typename Comparator > |
bool | is_sorted_cmp (ForwardIterator first, ForwardIterator last, Comparator cmp) |
| Checks if a range is sorted using a three-way Comparator (with memcmp() semantics). More...
|
|