<div dir="ltr"><div><div><div>Hi Ford,<br></div>Haskell does support ad-hoc polymorphism via type classes. In short,<br><br></div><div>class Foo a where<br></div><div>    -- type declarations for related sets of functions that are polymorphic in a go here<br><br></div><div>instance Foo Int where<br></div><div>    -- function definitions with a specialized to Int go here.<br><br></div><div>The Show class is probably a fairly simple example you can play with in ghci.<br><br></div><div>data Test = Test<br><br></div><div>instance Show Test where<br></div><div>    -- show :: Test -> String<br></div><div>    show t = "Hello World"<br></div><div><br></div><div>Thanks,<br></div><div>Arjun<br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Jul 6, 2016 at 12:05 PM OxFord <<a href="mailto:fordforox@gmail.com">fordforox@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>Hello,<br><br></div>why does haskell support only parametric polymorphism?<br><br></div>Is it because ad hoc p. || multiple dispatch is bad in general?<br><br><br></div><div>King Regards,<br><br></div><div>Ford<br></div></div>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div>