summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/parallel/mutable/ParArray.scala
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-03-29 18:22:18 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-03-29 18:22:18 +0200
commit794104f74d7a91bd36a6bdf8e05d1f96dac8240a (patch)
tree39f0469b4534f7f150ab44449cea4ae929444c46 /src/library/scala/collection/parallel/mutable/ParArray.scala
parent622cc9967376d6cef57c7478587e20d6afe9503f (diff)
downloadscala-794104f74d7a91bd36a6bdf8e05d1f96dac8240a.tar.gz
scala-794104f74d7a91bd36a6bdf8e05d1f96dac8240a.tar.bz2
scala-794104f74d7a91bd36a6bdf8e05d1f96dac8240a.zip
Adds links to parallel collections overview in API docs
Now that there's an extensive parallel collections overview on http://docs.scala-lang.org, API comments should link to it ("see also" field). This commit also fixes a couple of broken links on some sequential collection types.
Diffstat (limited to 'src/library/scala/collection/parallel/mutable/ParArray.scala')
-rw-r--r--src/library/scala/collection/parallel/mutable/ParArray.scala6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/library/scala/collection/parallel/mutable/ParArray.scala b/src/library/scala/collection/parallel/mutable/ParArray.scala
index c33495bd39..8cc0b95997 100644
--- a/src/library/scala/collection/parallel/mutable/ParArray.scala
+++ b/src/library/scala/collection/parallel/mutable/ParArray.scala
@@ -44,10 +44,14 @@ import scala.collection.GenTraversableOnce
*
* @tparam T type of the elements in the array
*
+ * @author Aleksandar Prokopec
+ * @since 2.9
+ * @see [[http://docs.scala-lang.org/overviews/parallel-collections/concrete-parallel-collections.html#parallel_array Scala's Parallel Collections Library overview]]
+ * section on `ParArray` for more information.
+ *
* @define Coll ParArray
* @define coll parallel array
*
- * @author Aleksandar Prokopec
*/
@SerialVersionUID(1L)
class ParArray[T] private[mutable] (val arrayseq: ArraySeq[T])