DEV Community

Discussion on: Haskell by example - Utopian Tree

Collapse
 
jvanbruegge profile image
Jan van Brügge • Edited

In my opinion the opposite is true. Having to name and assign takes your focus away from what the algorithm does and focuses on the data or helper functions instead, which is irrelevant. Writing your code mostly pointfree condenses your code to the actual algorithm only.

It's all about how used you are to thinking about functions and not the data that thr functions operate on.