8000
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.
Tuple operators like ++ break transformations from tuples:
++
case class Big(int1: Int, int2: Int, int3: Int, int4: Int, int5: Int, int6: Int, int7: Int, int8: Int) val one = (1, 2, 3, 4) val two = (5, 6, 7, 8) val joined = (one ++ two) joined.to[Big]