val x = for(i <- 1 to 3) yield i
x match {
case 1 :: rest => ... // compile error
}
constructor cannot be instantiated to expected type; found : collection.immutable.::[B] required: scala.collection.immutable.IndexedSeq[Int]
This is the same problem as MatchError when match receives an IndexedSeq but not a LinearSeq.
The question is, how to do it right? Adding .toList
everywhere doesn't seem right. And creating an own extractor which handles every Seq
(as described in the answer of the other question) would lead to a mess if everybody would do it...
I guess the question is, why can't I influence what the return type of sequence comprehensions is, or: why isn't such a generalized Seq
extractor part of the standard library?
Well, you can pattern-match any sequence:
For example:
Then this will match any sequence with more than (or equal to) 2 elements
One more solution for Vector in REPL: