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

Function template inplace_merge

boost::compute::inplace_merge

Synopsis

// In header: <boost/compute/algorithm/inplace_merge.hpp>


template<typename Iterator> 
  void inplace_merge(Iterator first, Iterator middle, Iterator last, 
                     command_queue & queue = system::default_queue());

Description

Merges the sorted values in the range [first, middle) with the sorted values in the range [middle, last) in-place.

Space complexity: \Omega(n)


PrevUpHomeNext