C: A Technological Landmine
blog.expandrive.com30 ポイント投稿者 jonshea57 コメント
Set(1,2,3).toIndexedSeq sortBy (-_)
Set(1,2,3).toSeq sortBy (-_)
Why does `h` compile, but `f` does not? def add(x: Int, y: Int) = x + y
val f = add(1,_)
val h = add(_,_)