summaryrefslogtreecommitdiff
path: root/sources/scala/collection/immutable/Set.scala
diff options
context:
space:
mode:
authorMatthias Zenger <mzenger@gmail.com>2003-07-18 23:42:22 +0000
committerMatthias Zenger <mzenger@gmail.com>2003-07-18 23:42:22 +0000
commit7afa1692c95b5de03002daef0dae2598554f2db0 (patch)
treebc76861b5e1eb088f4c3699ca109904ad63607f0 /sources/scala/collection/immutable/Set.scala
parentbb9cfcedf14ed2589f4f6f807b89effbbb59c84e (diff)
downloadscala-7afa1692c95b5de03002daef0dae2598554f2db0.tar.gz
scala-7afa1692c95b5de03002daef0dae2598554f2db0.tar.bz2
scala-7afa1692c95b5de03002daef0dae2598554f2db0.zip
Added a comment.
Diffstat (limited to 'sources/scala/collection/immutable/Set.scala')
-rw-r--r--sources/scala/collection/immutable/Set.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/sources/scala/collection/immutable/Set.scala b/sources/scala/collection/immutable/Set.scala
index 5f76065eb2..0b0339dc22 100644
--- a/sources/scala/collection/immutable/Set.scala
+++ b/sources/scala/collection/immutable/Set.scala
@@ -10,6 +10,14 @@
package scala.collection.immutable;
+/** This trait represents immutable sets. Concrete set implementations
+ * just have to provide functionality for the abstract methods in
+ * <code>scala.collection.Set</code> as well as for <code>+</code> and
+ * <code>-</code>.
+ *
+ * @author Matthias Zenger
+ * @version 1.0, 19/07/2003
+ */
trait Set[A, This <: Set[A, This]]: This with scala.collection.Set[A] {
def +(elem: A): This;