<div dir="ltr">Don't do this.  It isn't a "bad" idea, it's just that you're not using the language to its full potential, and will end up with a lot of annoying (and not quite trivial) boilerplate.<div><br></div><div>Read 'Data types a la carte'.[1]  There really ought to be a "standard" (even if unofficial) library to do open data types, but rolling your own is really easy.</div><div><br></div><div>[1]: <a href="http://www.cs.ru.nl/~W.Swierstra/Publications/DataTypesALaCarte.pdf">http://www.cs.ru.nl/~W.Swierstra/Publications/DataTypesALaCarte.pdf</a></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 20, 2015 at 11:01 AM, Clinton Mead <span dir="ltr"><<a href="mailto:clintonmead@gmail.com" target="_blank">clintonmead@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">I've linked to an ugly attempt to emulate subclasses in Haskell, and I'm wondering if anyone has done what I have perhaps in a cleaner way. <div><br></div><div>Firstly, the code is here: <a href="http://ideone.com/znHfSG" target="_blank">http://ideone.com/znHfSG</a></div><div><br></div><div>To explain what I've done, I first thought that a "method" basically takes some "input" (which I've called "i"), an object (which I've called "c" for class) and returns some output "o" and a potentially modified object "c". I've captured this behaviour in the badly named class "C".</div><div><br></div><div>I've then made a class "User", with methods "getFirstName" and "putFirstName" and defined them appropriately.</div><div><br></div><div>Furthermore, I've then made a data type "Age", and then "ExtendedUser" which combines "User" with "Age".</div><div><br></div><div>At this point, I can still call "getFirstName" and "putFirstName" on "ExtendedUser", as would be hoped.</div><div><br></div><div>I also defined "getAge", which naturally works on ExtendedUser.</div><div><br></div><div>Furthermore, I can override "getFirstName" on "ExtendedUser", which I have done to instead return a capitalised version.</div><div><br></div><div>Is what I've done of any practical use? And has someone done it better than me?</div></div>
<br>_______________________________________________<br>
Haskell-Cafe mailing list<br>
<a href="mailto:Haskell-Cafe@haskell.org">Haskell-Cafe@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>
<br></blockquote></div><br></div>