All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.happy3w.toolkits.iterator.IntRangeIterator Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.happy3w.toolkits.iterator;

public class IntRangeIterator extends NumberRangeIterator {
    public IntRangeIterator(int start, int end) {
        super(start, end, 1);
    }

    public IntRangeIterator(int start, int end, int step) {
        super(start, end, step);
    }

    @Override
    protected void increase() {
        current = current + step;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy