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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Boost.Sort C++ Reference

Header <boost/sort/spreadsort/float_sort.hpp>
Header <boost/sort/spreadsort/integer_sort.hpp>
Header <boost/sort/spreadsort/spreadsort.hpp>
Header <boost/sort/spreadsort/string_sort.hpp>
namespace boost {
  namespace sort {
    namespace spreadsort {
      template<typename Data_type, typename Cast_type> 
        Cast_type float_mem_cast(const Data_type &);
      template<typename RandomAccessIter> 
        void float_sort(RandomAccessIter, RandomAccessIter);
      template<typename RandomAccessIter, typename Right_shift> 
        void float_sort(RandomAccessIter, RandomAccessIter, Right_shift);
      template<typename RandomAccessIter, typename Right_shift, 
               typename Compare> 
        void float_sort(RandomAccessIter, RandomAccessIter, Right_shift, 
                        Compare);
    }
  }
}

PrevUpHomeNext