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
|
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)