Flow\Helper\RangeIterator::__construct PHP Method

__construct() public method

public __construct ( $lower, $upper, $step = 1 )
    public function __construct($lower, $upper, $step = 1)
    {
        $this->lower = $lower;
        $this->upper = $upper;
        $this->step = $step;
    }