summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/IterableViewLike.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2010-04-09 17:25:34 +0000
committerMartin Odersky <odersky@gmail.com>2010-04-09 17:25:34 +0000
commit261e399ba3a11a5844e057526a6161970b75e8d3 (patch)
tree21b7cd014d5758cf8a442b3e26c4e89321ddf082 /src/library/scala/collection/IterableViewLike.scala
parent0d80fa2d50c287837f45fb26e8ab3b69e278a9bb (diff)
downloadscala-261e399ba3a11a5844e057526a6161970b75e8d3.tar.gz
scala-261e399ba3a11a5844e057526a6161970b75e8d3.tar.bz2
scala-261e399ba3a11a5844e057526a6161970b75e8d3.zip
Updated documentation
Diffstat (limited to 'src/library/scala/collection/IterableViewLike.scala')
-rw-r--r--src/library/scala/collection/IterableViewLike.scala10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/library/scala/collection/IterableViewLike.scala b/src/library/scala/collection/IterableViewLike.scala
index 09f084d92c..b8f0b65faf 100644
--- a/src/library/scala/collection/IterableViewLike.scala
+++ b/src/library/scala/collection/IterableViewLike.scala
@@ -15,11 +15,19 @@ import generic._
import collection.immutable.Stream
import TraversableView.NoBuilder
-/** A template trait for a non-strict view of an iterable.
+/** A template trait for non-strict views of iterable collections.
+ * $iterableviewInfo
+ *
+ * @define iterableviewInfo
+ * $viewinfo
+ * All views for iterable collections are defined by creating a new `iterator` method.
*
* @author Martin Odersky
* @version 2.8
* @since 2.8
+ * @tparam A the element type of the view
+ * @tparam Coll the type of the underlying collection containing the elements.
+ * @tparam This the type of the view itself
*/
trait IterableViewLike[+A,
+Coll,