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 c532d3e commit b9decdcCopy full SHA for b9decdc
library/src-bootstrapped/scala/IArray.scala
@@ -192,5 +192,5 @@ object IArray {
192
* @param x the selector value
193
* @return sequence wrapped in a [[scala.Some]], if `x` is a Seq, otherwise `None`
194
*/
195
- def unapplySeq[T](x: IArray[T]): Option[IndexedSeq[T]] = Array.unapplySeq[T](x.asInstanceOf[Array[T]])
+ def unapplySeq[T](x: IArray[T]) = Array.unapplySeq[T](x.asInstanceOf[Array[T]])
196
}
0 commit comments