<div dir="ltr"><div><div>Hello,<br><br></div>I would say that type families should do the joke:<br><br>{-# LANGUAGE TypeFamilies #-}<br>{-# LANGUAGE GADTs #-}<br>type family Prod a where<br>  Prod String    = Int<br>  Prod (Maybe a) = a<br><br>data Foo e a where                                                                                                                            <br>   Foo :: e -> Foo (Prod e) a<br><br></div>Regards.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2016-07-04 22:43 GMT+02:00 Corentin Dupont <span dir="ltr"><<a href="mailto:corentin.dupont@gmail.com" target="_blank">corentin.dupont@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi all,<br><div>I have a data type looking like this:<br></div><div><br>data Foo e a where                                                                                                                             <br>   Foo :: e →  Foo e a     <br><br></div><div>I would like to instantiate it to make it equivalent to:<br></div><div><br>data Bar a where                                                                                                                               <br>   A :: String    →  Bar Int<br>   B :: Maybe a     →  Bar a<br><br></div><div>How can I do that? With a functional dependency?<br></div><div>I probably need to change the definition of Foo.<br></div></div>
<br>_______________________________________________<br>
Haskell-Cafe mailing list<br>
To (un)subscribe, modify options or view archives go to:<br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>
Only members subscribed via the mailman list are allowed to post.<br></blockquote></div><br></div>