Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scala warning erasure in case

I have the following pattern matching case in a scala function:

def someFunction(sequences: Iterable[Seq[Int]]):Seq[Int] = sequences match{
    case Seq() => Seq(1)
    case _ => ...
    ...
}

And I get the following warning:

warning: non variable type-argument A in type pattern Seq[A] is unchecked since it is eliminated by erasure
case Seq(_) => Seq(1)
        ^
one warning found

What does this mean?

like image 963
GTDev Avatar asked Jan 25 '26 19:01

GTDev


1 Answers

This warning is a bit spurious, and will not be present on Scala 2.10. In fact, I think it's a regression from Scala 2.8 (that is, it is not present there).

The reason for the warning is that it interprets Seq(_) to mean Seq(_: Seq[Int]), since that's the type parameter of sequences, and then complaining that it can't guarantee that Int there, since, at compile time, that will be erased. As I said, it's spurious.

like image 113
Daniel C. Sobral Avatar answered Jan 27 '26 10:01

Daniel C. Sobral



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!