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.
1 parent 70074d7 commit 174f6e9Copy full SHA for 174f6e9
library/src/scala/runtime/DynamicTuple.scala
@@ -253,7 +253,7 @@ object DynamicTuple {
253
if (t1.size == 0 || t2.size == 0) ().asInstanceOf[Zip[This, T2]]
254
else Tuple.fromArray(
255
t1.asInstanceOf[Product].productIterator.zip(
256
- t2.asInstanceOf[Product].productIterator).toArray
+ t2.asInstanceOf[Product].productIterator).toArray // TODO use toIArray of Object to avoid double/triple array copy
257
).asInstanceOf[Zip[This, T2]]
258
}
259
0 commit comments