in scala.collection.mutable
class DoubleLinkedList

abstract class DoubleLinkedList [A, This <: scala.collection.mutable.DoubleLinkedList[A, This] >: scala.Null]
extends scala.collection.mutable.SingleLinkedList[A, This]
with scala.ScalaObject
This extensible class may be used as a basis for implementing double linked lists. Type variable A refers to the element type of the list, type variable This is used to model self types of linked lists.
Author:
Matthias Zenger
Version:
1.0, 08/07/2003

Constructor Summary
def this

Var Summary
abstract var prev : This

Def Summary
override def append (that: This) : scala.Unit

override def insert (that: This) : scala.Unit

def remove : scala.Unit

Def inherited from scala.collection.mutable.SingleLinkedList[A, This]
append , apply, elements, get, insert, length, toList
Constructor Detail
def this

Var Detail
abstract var prev : This

Def Detail
override def append (that: This): scala.Unit

override def insert (that: This): scala.Unit

def remove : scala.Unit