In the book "The Craft of Function Programming" the symbol '>.>' joins functions together, opposite the direction of '.'. But when I implemented it using ghci, it shows the error '>.>' out of scope. Why? Is it an old notation that is not used anymore?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It's probably just a function defined by the book (I didn't read the book). AFAIK,
The de-facto notation of this seems to be Since functions are
|
|||||||
|
|
or equivalently,
(I gave the fixity declaration based on the |
|||
|
|
|
Note that you can use Hoogle to figure these things out. Furthermore, you can of course, always define such an operator yourself:
Then you can write:
|
|||||
|