summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-06 05:25:34 +0000
committerPaul Phillips <paulp@improving.org>2011-03-06 05:25:34 +0000
commitbcb42e12dcb30e9a3416910dae0dc3447c3c3748 (patch)
treeec2ba543045e97d3565d753cf3a395868b4b0f13 /src/library
parentff0dd07133f4467221c74d5ccaa2f3bc9cf6383e (diff)
downloadscala-bcb42e12dcb30e9a3416910dae0dc3447c3c3748.tar.gz
scala-bcb42e12dcb30e9a3416910dae0dc3447c3c3748.tar.bz2
scala-bcb42e12dcb30e9a3416910dae0dc3447c3c3748.zip
Specialized ArraySeq. Closes #2996, no review.
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/mutable/ArraySeq.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/ArraySeq.scala b/src/library/scala/collection/mutable/ArraySeq.scala
index cd53a24680..843b9c8739 100644
--- a/src/library/scala/collection/mutable/ArraySeq.scala
+++ b/src/library/scala/collection/mutable/ArraySeq.scala
@@ -40,7 +40,7 @@ import parallel.mutable.ParArray
* @define willNotTerminateInf
*/
@SerialVersionUID(1530165946227428979L)
-class ArraySeq[A](override val length: Int)
+class ArraySeq[@specialized A](override val length: Int)
extends IndexedSeq[A]
with GenericTraversableTemplate[A, ArraySeq]
with IndexedSeqOptimized[A, ArraySeq[A]]