Hacker News new | ask | show | jobs
by nicoburns 1265 days ago
Yeah, I agree with that. Especially reduce/fold, which I find is almost always better written as loop. Filter would be a good example of the opposite for me: almost always much clearer written functionally.
1 comments

I find I frequently use a combination - use map/filter to setup an iterator, and then reduce it in a loop.