Hacker News new | ask | show | jobs
by josephg 1265 days ago
Sure but it’s easy to go overboard with this stuff. Reduce (fold) especially can be pretty hard to read in hairy situations.

My general rule is that if you need fewer lines of code to implement your logic with a simple for loop, you probably should.

1 comments

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.
I find I frequently use a combination - use map/filter to setup an iterator, and then reduce it in a loop.