Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
algorithm.hh
Go to the documentation of this file.
1 #ifndef VCSN_MISC_ALGORITHM_HH
2 # define VCSN_MISC_ALGORITHM_HH
3 
4 # include <algorithm>
5 
6 namespace vcsn
7 {
8  namespace detail
9  {
10  template <typename Container, typename Compare>
11  bool is_sorted(const Container& container, Compare comp)
12  {
13  return std::is_sorted(std::begin(container),
14  std::end(container),
15  comp);
16  }
17  }
18 }
19 
20 #endif // !VCSN_MISC_ALGORITHM_HH
bool is_sorted(const Container &container, Compare comp)
Definition: algorithm.hh:11