Warum verursacht diese Konstruktion in Scala einen Typ-Mismatch-Fehler?
for (first <- Some(1); second <- List(1,2,3)) yield (first,second)
<console>:6: error: type mismatch;
found : List[(Int, Int)]
required: Option[?]
for (first <- Some(1); second <- List(1,2,3)) yield (first,second)
Wenn ich das Einige mit der Liste wechsle, wird es gut kompiliert:
for (first <- List(1,2,3); second <- Some(1)) yield (first,second)
res41: List[(Int, Int)] = List((1,1), (2,1), (3,1))
Das funktioniert auch gut:
for (first <- Some(1); second <- Some(2)) yield (first,second)