class ov::SeqGen

Overview

Infinite generator of sequence increasing values. More…

#include <sequnce_generator.hpp>

template <, >
class SeqGen
{
public:
    // construction

    SeqGen();

    // methods

    template <, >
    T operator () ();
};

Detailed Documentation

Infinite generator of sequence increasing values.

Start value can be specified.

Parameters:

T

Type of sequence values (must support ++ or ‘ ‘ operators).