<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Oct 31, 2015 at 6:10 PM, Roel van Dijk <span dir="ltr"><<a href="mailto:vandijk.roel@gmail.com" target="_blank">vandijk.roel@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">Small nitpick, but I would generally put the "exception" or "error" in the Left part of an Either and a correct result in the Right part. <div><br></div><div>This has some advantages. </div><div>1 - Right is right as opposed to wrong. Easy to remember mnemonic.</div><div>2 - It fits neatly with the <font face="monospace, monospace">Monad (Either e)</font> instance.</div></div></blockquote></div><br></div><div class="gmail_extra">I think you're being modest when you call it a "small nitpick." If code can't get Left and Right right, that code immediately becomes very suspicious.<br><br></div><div class="gmail_extra">Thus, not<br><p dir="ltr">  f2 :: Integer -> Either Integer ErrorString</p><p>but</p><p dir="ltr">  f2 :: Integer -> Either ErrorString Integer<br></p></div><div class="gmail_extra">Nice catch.<br></div><div class="gmail_extra"><br clear="all"><div><div>-- Kim-Ee</div></div>
</div></div>