Class VectorIterator<E>

java.lang.Object
com.github.andrewoma.dexx.collection.VectorPointer<E>
com.github.andrewoma.dexx.collection.VectorIterator<E>
All Implemented Interfaces:
Iterator<E>

class VectorIterator<E> extends VectorPointer<E> implements Iterator<E>
  • Field Details

    • blockIndex

      private int blockIndex
    • lo

      private int lo
    • endIndex

      private final int endIndex
    • endLo

      private int endLo
    • _hasNext

      private boolean _hasNext
  • Constructor Details

    • VectorIterator

      VectorIterator(int _startIndex, int _endIndex)
  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<E>
    • next

      public E next()
      Specified by:
      next in interface Iterator<E>
    • remove

      public void remove()
      Specified by:
      remove in interface Iterator<E>