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 an older version of Boost and was released in 2013. The current version is 1.90.0.
boost::algorithm::iota — Generates an increasing sequence of values, and stores them in [first, last)
// In header: <boost/algorithm/cxx11/iota.hpp> template<typename ForwardIterator, typename T> void iota(ForwardIterator first, ForwardIterator last, T value);
![]() |
Note |
|---|---|
This function is part of the C++2011 standard library. We will use the standard one if it is available, otherwise we have our own implementation. |
Parameters: |
|