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.
Array[AnyRef^{xs*}]
1 parent c422455 commit 832213bCopy full SHA for 832213b
library/src/scala/IArray.scala
@@ -609,7 +609,7 @@ object IArray:
609
* @return true if corresponding elements are equal
610
*/
611
def equals(xs: IArray[AnyRef^], ys: IArray[AnyRef^]): Boolean =
612
- Array.equals(xs.asInstanceOf[Array[AnyRef^{xs*}]], ys.asInstanceOf[Array[AnyRef^{ys*}]])
+ Array.equals(xs.asInstanceOf[Array[AnyRef^{xs}]], ys.asInstanceOf[Array[AnyRef^{ys}]])
613
614
/** Returns a decomposition of the array into a sequence. This supports
615
* a pattern match like `{ case IArray(x,y,z) => println('3 elements')}`.
0 commit comments