in scala.collection.mutable
class DoubleLinkedList

abstract class DoubleLinkedList [A, scala.Null <: This <: scala.collection.mutable.DoubleLinkedList[A,This]]
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



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