<div dir="ltr">minBound = Left minBound <= Left a < Right b <= Right maxBound = maxBound<div><br></div><div>fits with the behavior of the existing Ord instance.</div><div><br></div><div>On the other hand, Left (), being strictly less than minBound would rather drastically undermine the expected interaction of Ord and Bounded.</div><div><br></div><div>-Edward</div><div> </div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 8, 2018 at 1:06 AM, Ivan Lazar Miljenovic <span dir="ltr"><<a href="mailto:ivan.miljenovic@gmail.com" target="_blank">ivan.miljenovic@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 class="HOEnZb"><div class="h5">On 8 May 2018 at 13:19, David Feuer <<a href="mailto:david.feuer@gmail.com">david.feuer@gmail.com</a>> wrote:<br>
> We can write<br>
><br>
> instance Bounded a => Bounded (Maybe a) where<br>
>   minBound = Nothing<br>
>   maxBound = Just maxBound<br>
><br>
> instance (Bounded a, Bounded b) => Bounded (Either a b) where<br>
>   minBound = Left minBound<br>
>   maxBound = Right maxBound<br>
><br>
> While Bounded intentionally does not have an Ord superclass, I think it's<br>
> worth mentioning that these are the instances that arise naturally from the<br>
> Ord instances for the types in question.<br>
<br>
</div></div>Except these may be surprising to people; e.g. someone may expect that<br>
`minBound = Right minBound` as well.  Though as Maybe and Either don't<br>
have Enum instances this may be less of an issue.<br>
<span class="HOEnZb"><font color="#888888"><br>
-- <br>
Ivan Lazar Miljenovic<br>
<a href="mailto:Ivan.Miljenovic@gmail.com">Ivan.Miljenovic@gmail.com</a><br>
<a href="http://IvanMiljenovic.wordpress.com" rel="noreferrer" target="_blank">http://IvanMiljenovic.<wbr>wordpress.com</a><br>
</font></span><div class="HOEnZb"><div class="h5">______________________________<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>
</div></div></blockquote></div><br></div>