in scala/collection/mutable
class LinkedList

class LinkedList[A](head: A, tail: LinkedList[A])
extends SingleLinkedList[A,LinkedList[A]]
with 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

Method Summary
override def equals(obj: Any): Boolean
protected override def stringPrefix: String
     Defines the prefix of the string representation.

Methods inherited from java/lang/Object-class
clone, eq, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/Iterable-class
/:, :\, concat, exists, find, foldLeft, foldRight, forall, foreach, sameElements

Methods inherited from scala/ScalaObject-class
getScalaType

Methods inherited from scala/Seq-class
concat, copyToArray, drop, indexOf, isDefinedAt, lastIndexOf, subseq, take, toString

Methods inherited from scala/collection/mutable/SingleLinkedList-class
append, apply, elem, elements, get, insert, length, next, toList

Method Detail

equals

  override def equals(obj: Any): Boolean

stringPrefix

  protected override def stringPrefix: String
Defines the prefix of the string representation.