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 boolean
hasNext()
Returns true if the iteration has more elements.CodeUnit
next()
Return the next code unit in the iteration.
-