<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Feb 28, 2016 at 2:26 AM, Jeffrey Brown <span dir="ltr"><<a href="mailto:jeffbrown.the@gmail.com" target="_blank">jeffbrown.the@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>It is, I agree, not appropriate everywhere, but point-free code can in the right place be much more readable. Maps are a good example. Compare:</div><div><br></div><div>    map (f . g . h) xs</div><div><br></div><div>to</div><div><br></div><div>    map (\x -> f $ g $ h x) xs</div></div></blockquote><div><br></div><div>Not quite a fair comparison<br></div><div>How about?<br></div><div>[ f (g (h x))  |  x <- xs ] <br></div><div><br><br></div></div>
</div></div>