summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/LinkedListLike.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-10 21:29:20 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-10 21:29:20 +0000
commit71b6aca681ab697304590a96b13847b9bba141dc (patch)
tree5875ddce7fdf9d3c6fc8f191de44d5c7a40fc018 /src/library/scala/collection/mutable/LinkedListLike.scala
parent1e6de3dcbe606ae6acae9146115ed8c93232bb8e (diff)
downloadscala-71b6aca681ab697304590a96b13847b9bba141dc.tar.gz
scala-71b6aca681ab697304590a96b13847b9bba141dc.tar.bz2
scala-71b6aca681ab697304590a96b13847b9bba141dc.zip
Docs. No review.
Diffstat (limited to 'src/library/scala/collection/mutable/LinkedListLike.scala')
-rw-r--r--src/library/scala/collection/mutable/LinkedListLike.scala13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/library/scala/collection/mutable/LinkedListLike.scala b/src/library/scala/collection/mutable/LinkedListLike.scala
index 2523ece370..4f1a878e02 100644
--- a/src/library/scala/collection/mutable/LinkedListLike.scala
+++ b/src/library/scala/collection/mutable/LinkedListLike.scala
@@ -16,13 +16,20 @@ import generic._
import annotation.tailrec
/** This extensible class may be used as a basis for implementing linked
- * list. Type variable <code>A</code> refers to the element type of the
- * list, type variable <code>This</code> is used to model self types of
+ * list. 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
* @author Martin Odersky
- * @version 2.8
+ * @version 1.0, 08/07/2003
* @since 2.8
+ *
+ * @tparam A type of the elements contained in the linked list
+ * @tparam This the type of the actual linked list holding the elements
+ *
+ * @define Coll LinkedList
+ * @define coll linked list
*/
trait LinkedListLike[A, This <: Seq[A] with LinkedListLike[A, This]] extends SeqLike[A, This] { self =>