|
|
|
|
|
by skybrian
1452 days ago
|
|
That's an example of why Haskell code is often hard to read, and why I'm glad this isn't available in other languages. Why not write out the callback given to map using a let block? Then you can give meaningful names to intermediate values so it's easier to see how the pipeline works. (Though, functional programmers would probably pass up the opportunity and use one-letter variable names.) |
|
In real code I probably would have named it, but example code is always silly.