| net.sf.saxon.sort.IntIterator
IntIterator | public interface IntIterator (Code) | | An iterator over a sequence of unboxed int values
|
Method Summary | |
public boolean | hasNext() | public int | next() Return the next integer in the sequence. |
hasNext | public boolean hasNext()(Code) | | Test whether there are any more integers in the sequence
|
next | public int next()(Code) | | Return the next integer in the sequence. The result is undefined unless hasNext() has been called
and has returned true.
|
|
|