We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 512b437 + 188d696 commit 01b6826Copy full SHA for 01b6826
test/files/run/t6410.check
@@ -0,0 +1,2 @@
1
+ParMap(0 -> 4, 1 -> 5)
2
test/files/run/t6410.scala
@@ -0,0 +1,9 @@
+
3
4
+object Test extends App {
5
+ val x = collection.parallel.mutable.ParArray.range(1,10) groupBy { _ % 2 } mapValues { _.size }
6
+ println(x)
7
+ val y = collection.parallel.immutable.ParVector.range(1,10) groupBy { _ % 2 } mapValues { _.size }
8
+ println(y)
9
+}
0 commit comments