Package ghidra.util.datastruct
Interface IntIterator
-
public interface IntIteratorIterator over a set of Java-type int values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Return true if there is a next int in this iterator.booleanhasPrevious()Return true if there a previous int in this iterator.intnext()Get the next int value in this iterator.intprevious()Get the previous int value in this iterator.voidremove()Removes from the underlying collection the last element returned by the iterator (optional operation).
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Return true if there is a next int in this iterator.
-
next
int next()
Get the next int value in this iterator.
-
hasPrevious
boolean hasPrevious()
Return true if there a previous int in this iterator.
-
previous
int previous()
Get the previous int value in this iterator.
-
remove
void remove()
Removes from the underlying collection the last element returned by the iterator (optional operation).
-
-