This is a template function.

template<class T> inline std::vector<T> Seq(T const& first, T const& last);

Currently the function is implemented as a wrapper for std::iota<T>.

Arguments

first, last

T const& first and last elements in the sequence.

Value

a std::vector<T> object.

See also