32#ifndef _GLIBCXX_PARALLEL_CHECKERS_H 
   33#define _GLIBCXX_PARALLEL_CHECKERS_H 1 
   49  template<
typename _IIter, 
typename _Compare>
 
   56      _IIter __current(__begin), __recent(__begin);
 
   58      for (__current++; __current != __end; __current++)
 
   60          if (__comp(*__current, *__recent))
 
GNU parallel code for public use.
bool __is_sorted(_IIter __begin, _IIter __end, _Compare __comp)
Check whether [__begin, __end) is sorted according to __comp.