Class ConsListIterator<E>

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

class ConsListIterator<E> extends Object implements Iterator<E>
  • Field Details

  • Constructor Details

    • ConsListIterator

      ConsListIterator(ConsList<E> current)
  • 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>