<div dir="ltr">+1, but the operator you're looking for in App there would actually be a type level version of (.).<div><br></div><div>type App a = ExceptT Err $ ReaderT Config $ LogT Text $ IO a</div><div><br></div><div>type App = ExceptT Err . ReaderT Config . LogT Text . IO</div><div><br></div><div>which would need</div><div><br></div><div>type (.) f g x = f (g x)</div><div>infixr 9 .</div><div><br></div><div>to parse</div><div><br></div><div>-Edward</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 1, 2016 at 7:13 PM, Elliot Cameron <span dir="ltr"><<a href="mailto:eacameron@gmail.com" target="_blank">eacameron@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">Folks,<div><br></div><div>Has there been a discussion about adding a type-level operator "$" that just mimics "$" at the value level?</div><div><br></div><div><div>type f $ x = f x</div><div>infixr 0 $</div></div><div><br></div><div>Things like monad transformer stacks would look more "stack-like" with this:</div><div><br></div><div>type App = ExceptT Err $ ReaderT Config $ LogT Text IO<span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Elliot Cameron</div></font></span></div>
<br>______________________________<wbr>_________________<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-<wbr>bin/mailman/listinfo/libraries</a><br>
<br></blockquote></div><br></div>