Package ghidra.program.model.listing
Interface InstructionIterator
- All Superinterfaces:
Iterable<Instruction>
,Iterator<Instruction>
- All Known Implementing Classes:
InstructionRecordIterator
Interface to define an iterator over over some set of instructions.
- See Also:
-
Method Summary
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
Method Details
-
hasNext
boolean hasNext()Returns true if the iteration has more elements.- Specified by:
hasNext
in interfaceIterator<Instruction>
-
next
Instruction next()Return the next instruction in the iteration.- Specified by:
next
in interfaceIterator<Instruction>
-