
org.psjava.util.IntSequenceIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psjava Show documentation
Show all versions of psjava Show documentation
Problem Solving Library for Java
package org.psjava.util;
import java.util.Iterator;
public class IntSequenceIterable {
public static Iterable create(final int from, final int step, final int size) {
return new Iterable() {
@Override
public Iterator iterator() {
return IntSequenceIterator.create(from, step, size);
}
};
}
private IntSequenceIterable() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy