Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
iota.hpp File Reference
#include <numeric>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>
Include dependency graph for iota.hpp:

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::algorithm
 

Functions

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...