2
なぜそれが(ScalaのREPLで)私は、例えば、Scalaのマップには、 "_"
def double(d: Int) = 2*d
(0 until 10).zipWithIndex.map(i => double(i._1))
か、単に
(0 until 10).zipWithIndex.map(_._1)
を書くことができ、まだ私は書くことができないということです
(0 until 10).zipWithIndex.map(double(_._1))
error: missing parameter type for expanded function ((x$1) => x$1._1) (0 until 10).zipWithIndex.map(double(_._1))
?
可能な重複:http://stackoverflow.com/questions/2173373/scala-foreach-strange-behaviour – sschaef