public class UniformFloatRangeIterable extends Object implements NumericIterable<Float>
start (inclusive) to another number
stop (exclusive). There is an optional step
size.| Constructor and Description |
|---|
UniformFloatRangeIterable(float start,
float stop)
Construct a UniformFloatRangeIterator with the given values
|
UniformFloatRangeIterable(float start,
float stop,
float step)
Construct a UniformFloatRangeIterator with the given values
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<Float> |
iterator() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic UniformFloatRangeIterable(float start, float stop, float step)
start - the starting value (inclusive)stop - the stopping number (exclusive)step - the step sizepublic UniformFloatRangeIterable(float start, float stop)
start - the starting value (inclusive)stop - the stopping number (exclusive)