What is the difference between the dot (.) and the dollar sign ($)?. As I understand it, they are both syntactic sugar for not needing to use parentheses.
|
|
|||||||||||||
|
|
The For example, let's 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 Going back to the same example:
You can chain
If that's too many parenthesis for your liking, get rid of them with the
|
|||||||||||||||||||
|
|
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 |
||||
|
|
|
Also note that
While
Note that I've intentionally added extra parentheses in the type signature. Uses of
becomes
becomes
Hope this helps! |
|||
|
|
|
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. |
|||
|
|
|
($) allows functions to be chained together without adding parentheses to control evaluation order:
The compose operator (.) creates a new function without specifying the arguments:
The example above is arguably illustrative, but doesn't really show the convenience of using composition. Here's another analogy:
If we only use third once, we can avoid naming it by using a lambda:
Finally, composition lets us avoid the lambda:
|
|||
|
One application that is useful and took me some time to figure out from the very short description at learn you a haskell: Since
and parenthesizing the right hand side of an expression containing an infix operator converts it to a prefix function, one can write Why would anyone do this? For lists of functions, for example. Both
and
are shorter than |
|||||||
|
|
... or you could avoid the '.' and '$' constructions by using pipelining:
That's after you've added in the helper function:
|
|||||||||||||
|