public class IntStepIterator extends java.lang.Object implements IntIterator
| Constructor and Description |
|---|
IntStepIterator(int start,
int step,
int limit)
Create an iterator over a sequence with regular steps
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext()
Test whether there are any more integers in the sequence; and change the state of
the iterator so a call on
IntIterator.next() delivers the next integer. |
int |
next()
Return the next integer in the sequence.
|
public IntStepIterator(int start,
int step,
int limit)
start - the first value to be returnedstep - the difference between successive values (must be non-zero)limit - if step>0, the iteration will not deliver any values greater than this limit;
if step<0 the iteration will not deliver any values lower than this limitpublic boolean hasNext()
IntIteratorIntIterator.next() delivers the next integer.
The effect of calling #hasNext() a second time without an intervening
call on #next() is undefined.
hasNext in interface IntIteratorpublic int next()
IntIterator#hasNext() has been called
and has returned true.next in interface IntIteratorCopyright (c) 2004-2022 Saxonica Limited. All rights reserved.