With C++11, the STL has now a std::iota function (see a reference). In contrast to std::fill_n, std::generate_n, there is no std::iota_n, however. What would be a good implementation for that? A direct loop (alternative 1) or delegation to std::generate_n with a simple lambda expression (alternative 2)?
Alternative 1)
template<class OutputIterator, class Size, class T>
void iota_n(OutputIterator first, Size n, T value)
{
for (Size i = 0; i != n; ++i)
*first++ = value++;
}
Alternative 2)
template<class OutputIterator, class Size, class T>
void iota_n(OutputIterator first, Size n, T value)
{
std::generate_n(first, n, [&](){ return value++; });
}
Would both alternatives generate equivalent code with optimizing compilers?
std::iota(start, start + n, value);. Also, I would changei != ntoi < nfor the first alternative. – Jesse Good Aug 1 '12 at 21:18