Elm对lambda表达式或匿名函数具有特殊的语法:
\arguments -> returnedValue
例如,如List.filter:
>List.filter(\num -> num > 1) [1,2,3] [2,3] : List number
更深入地讲,反斜杠(\)用于标记lambda表达式的开始,箭头->()用于分隔函数主体中的参数。如果有更多参数,则它们之间用空格分隔:
normalFunction x y = x + y -- is equivalent to lambdaFunction = \x y -> x + y > normalFunction 1 2 3 : number > lambdaFunction 1 2 3 : number