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