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 for the latest Boost documentation.
PrevUpHomeNext

Function template float_sort

boost::sort::spreadsort::float_sort — Floating-point sort algorithm using random access iterators with just right-shift functor.

Synopsis

// In header: <boost/sort/spreadsort/float_sort.hpp>


template<typename RandomAccessIter, typename Right_shift> 
  void float_sort(RandomAccessIter first, RandomAccessIter last, 
                  Right_shift rshift);

Description

Parameters:

first

Iterator pointer to first element.

last

Iterator pointing to one beyond the end of data.

rshift

Functor that returns the result of shifting the value_type right a specified number of bits.


PrevUpHomeNext