Package org.apache.commons.math3.util
Class IntegerSequence.Range
- java.lang.Object
-
- org.apache.commons.math3.util.IntegerSequence.Range
-
-
Constructor Summary
Constructors Constructor Description Range(int start, int max, int step)
Creates a sequence \( a_i, i < 0 <= n \) where \( a_i = start + i * step \) and \( n \) is such that \( a_n <= max \) and \( a_{n+1} > max \).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<Integer>
iterator()
int
size()
Gets the number of elements contained in the range.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
Range
public Range(int start, int max, int step)
Creates a sequence \( a_i, i < 0 <= n \) where \( a_i = start + i * step \) and \( n \) is such that \( a_n <= max \) and \( a_{n+1} > max \).- Parameters:
start
- First value of the range.max
- Last value of the range that satisfies the above construction rule.step
- Increment.
-
-