summaryrefslogtreecommitdiff
path: root/test/files/run/hashsetremove.scala
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-01-04 19:41:00 -0800
committerJames Iry <jamesiry@gmail.com>2013-01-04 19:41:00 -0800
commitaffa98fa54893830b88a9ebebd5d29740f10114c (patch)
tree094b796e1b4c5bac5a806848fd82a4ba00c15408 /test/files/run/hashsetremove.scala
parentb571637c2dbb20208543520f5802fe4de5115616 (diff)
downloadscala-affa98fa54893830b88a9ebebd5d29740f10114c.tar.gz
scala-affa98fa54893830b88a9ebebd5d29740f10114c.tar.bz2
scala-affa98fa54893830b88a9ebebd5d29740f10114c.zip
SI-6916 makes FlatHashTable#remove a Boolean not Option[A]
Makes FlatHashTable#remove return a boolean instead of Option[A]. Updates HashSet accordingly. Adds a test to make sure remove works as advertised.
Diffstat (limited to 'test/files/run/hashsetremove.scala')
-rw-r--r--test/files/run/hashsetremove.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/hashsetremove.scala b/test/files/run/hashsetremove.scala
new file mode 100644
index 0000000000..7b82a9909b
--- /dev/null
+++ b/test/files/run/hashsetremove.scala
@@ -0,0 +1,13 @@
+import scala.collection.mutable.HashSet
+
+
+object Test extends App {
+ val h = new HashSet[Int]
+ h += 1
+ println(s"remove 0 should be false, was ${h remove 0}")
+ println(s"contains 1 should be true, was ${h contains 1}")
+ println(s"remove 1 should be true, was ${h remove 1}")
+ println(s"contains 1 should be false, was ${h contains 1}")
+ println(s"remove 1 should be false, was ${h remove 1}")
+ println(s"contains 1 should be false, was ${h contains 1}")
+ } \ No newline at end of file