9#if !defined(IOSS_USE_STD_SORT)
17 template <
class Iter,
class Comp>
inline void sort(Iter begin, Iter end, Comp compare)
19#if defined(IOSS_USE_STD_SORT)
20 std::sort(begin, end, compare);
26 template <
class Iter>
inline void sort(Iter begin, Iter end)
28#if defined(IOSS_USE_STD_SORT)
29 std::sort(begin, end);
35 template <
typename INT>
void sort(std::vector<INT> &v)
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40
void sort(Iter begin, Iter end, Comp compare)
Definition Ioss_Sort.h:17
void pdqsort(Iter begin, Iter end, Compare comp)
Definition pdqsort.h:575