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 iota

boost::compute::iota

Synopsis

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


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

Description

Fills the range [first, last) with sequential values starting at value.

For example, the following code:


Will fill vec with the values (0, 1, 2, ...).

Space complexity: (1)


PrevUpHomeNext