summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/MapBuilder.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-12 21:53:30 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-04-12 21:53:30 +0000
commit406e54b7e59671462c4057894776f04d8f77b80e (patch)
tree8e44e9975ab9fca6c2f814bd4ea5aa387ccebfab /src/library/scala/collection/mutable/MapBuilder.scala
parent9e155f4956ad608342eb760c6939ebd9aa1a51a8 (diff)
downloadscala-406e54b7e59671462c4057894776f04d8f77b80e.tar.gz
scala-406e54b7e59671462c4057894776f04d8f77b80e.tar.bz2
scala-406e54b7e59671462c4057894776f04d8f77b80e.zip
Documentation for mutable collections. No review.
Diffstat (limited to 'src/library/scala/collection/mutable/MapBuilder.scala')
-rw-r--r--src/library/scala/collection/mutable/MapBuilder.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/library/scala/collection/mutable/MapBuilder.scala b/src/library/scala/collection/mutable/MapBuilder.scala
index 9ce3524d9e..75fb48abd6 100644
--- a/src/library/scala/collection/mutable/MapBuilder.scala
+++ b/src/library/scala/collection/mutable/MapBuilder.scala
@@ -14,6 +14,10 @@ package mutable
/** The canonical builder for immutable maps, working with the map's `+` method
* to add new elements.
* Collections are built from their `empty` element using this + method.
+ *
+ * @tparam A Type of the keys for the map this builder creates.
+ * @tparam B Type of the values for the map this builder creates.
+ * @tparam Coll The type of the actual collection this builder builds.
* @param empty The empty element of the collection.
*
* @since 2.8