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 upper_bound

boost::compute::upper_bound

Synopsis

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


template<typename InputIterator, typename T> 
  InputIterator 
  upper_bound(InputIterator first, InputIterator last, const T & value, 
              command_queue & queue = system::default_queue());

Description

Returns an iterator pointing to the first element in the sorted range [first, last) that is not less than or equal to value.

Space complexity: (1)


PrevUpHomeNext