Hacker News new | ask | show | jobs
by takle 3830 days ago
I agree with you. I'm going to write a post about function application and composition (right-to-left / left-to-right) so other communities can stop discussing non-essential matters.

I do like the fact that the `pipe operator` is often mentioned along the bash '|' which is used in a pointfree style.

Well it might make sense sometimes, so its good to know one's options :)

  p x y z = f (g x y) z
  p       = ((.) f) . g
1 comments

Of course, something is very wrong if you ever use a section of the function composition operator. Use point-free within reason... :-p
Or go completely, absolutely nuts with point-free and use J (http://www.jsoftware.com/).