in scala.collection.mutable
class LinkedList

@scala.serializable

class LinkedList [A]
extends scala.collection.mutable.SingleLinkedList[A, scala.collection.mutable.LinkedList[A]]
with scala.ScalaObject
This class implements single linked lists where both the head (elem) and the tail (next) are mutable.
Author:
Matthias Zenger
Version:
1.0, 08/07/2003

Constructor Summary
def this (elem: A, next: scala.collection.mutable.LinkedList[A])

Var Summary
var elem : A

var next : scala.collection.mutable.LinkedList[A]

Def Summary
override def equals (obj: scala.Any) : scala.Boolean

override protected def stringPrefix : java.lang.String

Def inherited from scala.collection.mutable.SingleLinkedList[A, scala.collection.mutable.LinkedList[A]]
append , apply, elements, get, insert, length, toList
Constructor Detail
def this (elem: A, next: scala.collection.mutable.LinkedList[A])

Var Detail
var elem : A

var next : scala.collection.mutable.LinkedList[A]

Def Detail
override def equals (obj: scala.Any): scala.Boolean

override protected def stringPrefix : java.lang.String