|
template<typename ForwardIterator , typename T > |
void | boost::algorithm::iota (ForwardIterator first, ForwardIterator last, T value) |
| Generates an increasing sequence of values, and stores them in [first, last) More...
|
|
template<typename Range , typename T > |
void | boost::algorithm::iota (Range &r, T value) |
| Generates an increasing sequence of values, and stores them in the input Range. More...
|
|
template<typename OutputIterator , typename T > |
OutputIterator | boost::algorithm::iota_n (OutputIterator out, T value, std::size_t n) |
| Generates an increasing sequence of values, and stores them in the input Range. More...
|
|