Can anybody explain what the difference is in Haskell between the dot (.), and the dollar sign ($). As I understand it, they are both syntactic sugar for not needing to use parentheses.
|
1
|
|||
|
|
|
The '$' operator is for avoiding parenthesis. Anything appearing after it will take precedence over anything that comes before. For example, lets say you've got a line that reads:
If you want to get rid of those parenthesis, any of the following lines would also do the same thing:
The primary purpose of the '.' operator is not to avoid parenthesis, but to chain functions. it lets you tie the output of whatever appears on the right to the input of whatever appears on the left. This usually also results in fewer parenthesis, but but works differently. Going back to the same example:
You can chain 'show' to 'putStrLn' like this:
If that's too many parenthesis for your liking, get rid of them with the '$' operator:
|
||
|
|
|
The short and sweet version: ($) calls the function which is its left hand argument on the value which is its right hand argument. (.) composes the function which is its left hand argument on the function which is its right hand argument. |
||
|
|
|
|
Also note that
While
Note that I've intentionally added extra parentheses in the type signature. Uses of
becomes
becomes
Hope this helps! |
||
|
|
|
|
They have different types and different definitions:
In some cases they are interchangeable, but this is not true in general. The typical example where they are is:
==>
In other words in a chain of |
|||
|
|
