...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
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: |
|