From 9ef01e68851ae6045ce4dd1aa7d5f921a4bc7f0d Mon Sep 17 00:00:00 2001 From: Aleksandar Pokopec Date: Wed, 28 Sep 2011 11:26:12 +0000 Subject: Fixes #4894. Adds Growable and Shrinkable to parallel maps and sets. No review. --- test/files/run/t4894.scala | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/files/run/t4894.scala (limited to 'test') diff --git a/test/files/run/t4894.scala b/test/files/run/t4894.scala new file mode 100644 index 0000000000..2b70da141d --- /dev/null +++ b/test/files/run/t4894.scala @@ -0,0 +1,27 @@ + + + + + +object Test { + + def main(args: Array[String]) { + import collection._ + val hs = mutable.HashSet[Int]() + hs ++= 1 to 10 + hs --= 1 to 10 + + val phs = parallel.mutable.ParHashSet[Int]() + phs ++= 1 to 10 + for (i <- 1 to 10) assert(phs(i)) + phs --= 1 to 10 + assert(phs.isEmpty) + + val phm = parallel.mutable.ParHashMap[Int, Int]() + phm ++= ((1 to 10) zip (1 to 10)) + for (i <- 1 to 10) assert(phm(i) == i) + phm --= 1 to 10 + assert(phm.isEmpty) + } + +} -- cgit v1.2.3