So something like
addList :: [int] -> int
addList = foldl1 (+)
Why does this work? The Currying part. Why no variable?
|
So something like
Why does this work? The Currying part. Why no variable? |
|||||||||||
|
|
If you define a function like Analogously when you do So in other words when you do |
|||
|
|
|
Besides currying, as sepp2k pointed out, here we use the so called eta reduction. It's one of the reduction rules of lambda calculus which is the basis of Haskell. It says that Lets apply it to your case. I guess you are comfortable with a definition like This rule is based on the idea that two functions are equal if they give equal results when applied to the same arguments. The two functions here are |
||||
|
|
|
The explanation from sepp2k is correct, I just want to point out (pun intended) that this application of currying has a name: It's called "point-free style". Here is a good explanation, including the pros and cons: http://www.haskell.org/haskellwiki/Pointfree |
|||
|
|