Uses of Class
edu.rice.comp211.laundry.list.BiList

Packages that use BiList
edu.rice.comp211.laundry.list   
edu.rice.comp211.laundry.sync   
 

Uses of BiList in edu.rice.comp211.laundry.list
 

Methods in edu.rice.comp211.laundry.list that return BiList
 BiList<T> BiList.insertFront(T o)
          Inserts the given value at the front of the list
 BiList<T> BiList.insertRear(T o)
          Insert the given value at the end of the list
 

Uses of BiList in edu.rice.comp211.laundry.sync
 

Subclasses of BiList in edu.rice.comp211.laundry.sync
 class SyncBiList<T>
          Specialty BiList that is used by the GUI to create animations by slowing the speed of the list operations down.
 

Methods in edu.rice.comp211.laundry.sync that return BiList
 BiList<T> SyncBiList.insertFront(T o)
           
 BiList<T> SyncBiList.insertRear(T o)