Hacker News new | ask | show | jobs
by elbear 815 days ago
It depends on how you wrote it. In general, I found it hard to understand point-free expressions (in the code of others, because I never used them).
1 comments

IME, point free expressions are exceptionally clear when sufficiently simple, but get muddy fast. The inflection point is probably not too far from

    let rms = sqrt . sum . map (^^ 2)