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 3815224 + cd40f9a commit 6e39ebcCopy full SHA for 6e39ebc
compiler/test-resources/repl/i5218
@@ -0,0 +1,7 @@
1
+scala> val tuple = (1, "2", 3L)
2
+val tuple: (Int, String, Long) = (1,2,3)
3
+scala> 0.0 *: tuple
4
+val res0: Double *: (Int, String, Long)(tuple) = (0.0,1,2,3)
5
+scala> tuple ++ tuple
6
+val res1: Int *: String *: Long *:
7
+ scala.Tuple.Concat[Unit, (Int, String, Long)(tuple)] = (1,2,3,1,2,3)
0 commit comments