<p dir="ltr">I highly recommend writing all existentials using GADT syntax. It is *far* more intuitive.</p>
<p dir="ltr">David</p>
<div class="gmail_quote">On Mar 20, 2015 1:12 AM, "Lyle Kopnicky" <<a href="mailto:lists@qseep.net">lists@qseep.net</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi folks,<div><br></div><div>I know how to write existentially quantified data constructors for single-parameter type classes, but I'm having trouble doing it for multi-parameter type classes. Is it not possible, or am I just using the wrong syntax?</div><div><br></div><div>I have this class:</div><div><br></div><div><div>class Collidable a b where</div><div><span style="white-space:pre-wrap">       </span>collideWith :: a -> b -> String</div></div><div><br></div><div>And I tried to define an existentially quantified data constructor thusly:</div><div><br></div><div><div>data Collision = forall a. (forall b. Collidable a b => Collision {collider1 :: a, collider2 :: b})</div></div><div><br></div><div>I get a parse error. So then I tried:</div><div><br></div><div><div>data Collision = forall a. forall b. Collidable a b => Collision {collider1 :: a, collider2 :: b}</div></div><div><br></div><div>I get a different parse error. Is there any way to make this work?</div><div><br></div><div>Thanks,</div><div>Lyle</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>