Package ghidra.program.model.listing
Interface CodeUnitIterator
-
- All Known Implementing Classes:
CodeUnitKeyIterator,CommentTypeFilterIterator,EmptyCodeUnitIterator
public interface CodeUnitIterator extends java.util.Iterator<CodeUnit>, java.lang.Iterable<CodeUnit>
Interface to define an iterator over over some set of code units.- See Also:
CollectionUtils.asIterable(T)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Returns true if the iteration has more elements.CodeUnitnext()Return the next code unit in the iteration.
-