Interface CodeUnitIterator

    • 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.
      • Methods inherited from interface java.lang.Iterable

        forEach, iterator, spliterator
      • Methods inherited from interface java.util.Iterator

        forEachRemaining, remove
    • Method Detail

      • hasNext

        boolean hasNext()
        Returns true if the iteration has more elements.
        Specified by:
        hasNext in interface java.util.Iterator<CodeUnit>
      • next

        CodeUnit next()
        Return the next code unit in the iteration.
        Specified by:
        next in interface java.util.Iterator<CodeUnit>