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 iota

boost::algorithm::iota — Generates an increasing sequence of values, and stores them in [first, last)

Synopsis

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


template<typename ForwardIterator, typename T>
  void iota(ForwardIterator first, ForwardIterator last, T value);

Description

[Note] Note

This function is part of the C++2011 standard library.

Parameters:

first

The start of the input sequence

last

One past the end of the input sequence

value

The initial value of the sequence to be generated


PrevUpHomeNext