|
Embedded Template Library 1.0
|
Functions | |
| template<typename TIterator, typename T> | |
| ETL_CONSTEXPR14 void | etl::iota (TIterator first, TIterator last, T value) |
| ETL_CONSTEXPR14 void etl::iota | ( | TIterator | first, |
| TIterator | last, | ||
| T | value ) |
iota Reverse engineered version of std::iota for non C++ 0x11 compilers. Fills a range of elements with sequentially increasing values starting with value.
| first | An iterator to the first position to fill. |
| last | An iterator to the last + 1 position. |