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

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

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

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

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

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