Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

Header <boost/sort/spreadsort/integer_sort.hpp>
PrevUpHomeNext
namespace boost {
  namespace sort {
    namespace spreadsort {
      template<typename RandomAccessIter> 
        void integer_sort(RandomAccessIter, RandomAccessIter);
      template<typename RandomAccessIter, typename Right_shift, 
               typename Compare> 
        void integer_sort(RandomAccessIter, RandomAccessIter, Right_shift, 
                          Compare);
      template<typename RandomAccessIter, typename Right_shift> 
        void integer_sort(RandomAccessIter, RandomAccessIter, Right_shift);
    }
  }
}

PrevUpHomeNext