Files
boost_range/doc/reference/algorithm_ext/iota.qbk
Neil Groves a47f15a98f Boost.Range merge from trunk to release.
This is motivated by the need to correct the istream_range, to correct the adaptors.hpp header file, and correct the return types of various range algorithms.

[SVN r61517]
2010-04-23 22:50:56 +00:00

29 lines
624 B
Plaintext

[section:iota iota]
[heading Prototype]
``
template<class ForwardRange, class Value>
ForwardRange& iota(ForwardRange& rng, Value x);
``
[heading Description]
`iota` traverses forward through `rng`, each element `y` in `rng` is assigned a value equivalent
to `x + boost::distance(boost::begin(rng), it)`
[heading Definition]
Defined in the header file `boost/range/algorithm_ext/iota.hpp`
[heading Requirements]
# `ForwardRange` is a model of the __forward_range__ Concept.
# `Value` is a model of the `Incrementable` Concept.
[heading Complexity]
Linear. Exactly `distance(rng)` assignments into `rng`.
[endsect]