const
object Function { def const[X, Y](x: X)(y: Y): X }
const は、値 x を受け取って、いかなる入力値 y に対してもその値 x を返す匿名関数を作成します。
x
y