|  | Home | Libraries | People | FAQ | More | 
boost::algorithm::is_sorted_until
// In header: <boost/algorithm/cxx11/is_sorted.hpp> template<typename ForwardIterator, typename Pred> ForwardIterator is_sorted_until(ForwardIterator first, ForwardIterator last, Pred p);
| Parameters: | 
 | ||||||
| Returns: | the point in the sequence [first, last) where the elements are unordered (according to the comparison predicate 'p'). |