<div dir="ltr">This operator is usually named .: or the like. It is a weaker form of fmap.fmap.<div><br></div><div>I'm pretty strongly -1 on including it in base under the <.> name. </div><div><br></div><div>I'm less strongly -1 on some .: variant.</div><div><br></div><div>-Edward</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Sep 19, 2015 at 9:30 PM, Ömer Sinan Ağacan <span dir="ltr"><<a href="mailto:omeragacan@gmail.com" target="_blank">omeragacan@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I don't know if "I find this very useful" is enough for adding a function to<br>
base, but here it goes:<br>
<br>
    infixl 4 <.><br>
    (<.>) :: Functor f => (b -> c) -> (a -> f b) -> (a -> f c)<br>
    f1 <.> f2 = fmap f1 . f2<br>
    {-# INLINE (<.>) #-}<br>
<br>
I first defined this couple of months ago and I find myself looking for this<br>
function all the time now.<br>
<br>
One problem with this is that the name is used by widely used `filepath`<br>
library.<br>
_______________________________________________<br>
Libraries mailing list<br>
<a href="mailto:Libraries@haskell.org">Libraries@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries</a><br>
</blockquote></div><br></div>