Con Scala 2.8.1, compilación de este:¿Por qué no se compila esta Scala for expression using tuples?
val t = (40, 2)
println(for ((i, j) <- List(t)) yield i + j)
val e: Either[String, (Int, Int)] = Right(t)
println(e.right.map {
case (i, j) => i + j
})
println(for ((i, j) <- e.right) yield i + j)
da esto:
test.scala:9: error: constructor cannot be instantiated to expected type;
found : (T1, T2)
required: Either[Nothing,(Int, Int)]
println(for ((i, j) <- e.right) yield i + j)
Según Programación en Scala, la expresión debe ser equivalente a la expresión mapa/caso, pero solo este último compila. ¿Qué estoy haciendo mal y cómo debo hacer esto?