Interface ISimpleLinkedList<E>

Type Parameters:
E - the type of the elements of a ISimpleLinkedList
All Superinterfaces:
Iterable<E>
All Known Implementing Classes:
SimpleLinkedList

public interface ISimpleLinkedList<E> extends Iterable<E>
Author:
Silvan Wyss
  • Method Details

    • addAtEnd

      void addAtEnd(E element)
    • clear

      void clear()
    • getElementCount

      int getElementCount()
    • getStoredFirst

      E getStoredFirst()
    • isEmpty

      boolean isEmpty()
    • removeFirst

      void removeFirst()