<div dir="ltr">Ok, in that case it makes sense.   Perhaps we should update the proposal to specify the rules that would allow me to compute the difference between `T2` and `T3`.  Presumably there are similar rules for type families, data families, and classes?<div><br></div><div>Once we've clarified this, I think we can accept this, unless there are any objections.</div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Jun 27, 2018 at 9:44 PM Richard Eisenberg <<a href="mailto:rae@cs.brynmawr.edu">rae@cs.brynmawr.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space">But we morally *do* have explicit kind application. See accepted proposal <a href="https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0015-type-level-type-applications.rst" target="_blank">https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0015-type-level-type-applications.rst</a>  So the only reason that we don't have it is that GHC hasn't caught up to its specification. (I have a student working on this now.)<div><br></div><div>The reason that T2 and T3 are different here is that T2 mentions the k in the type declaration, while T3 mentions it only in the constructor declaration.</div><div><br></div><div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div>Richard</div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><br><div><div><br><blockquote type="cite"><div>On Jun 26, 2018, at 6:52 PM, Iavor Diatchki <<a href="mailto:iavor.diatchki@gmail.com" target="_blank">iavor.diatchki@gmail.com</a>> wrote:</div><br class="m_589329145798551894Apple-interchange-newline"><div><div dir="ltr">Hello,<div>thanks for the revisions---I read through the new version, and I think I almost understand the plan.   I would say that for this proposal it makes more sense to just deal with explicit specificities at the value level, and never have the curly braces in type constructors.   Since we don't have an explicit kind application at the type level (e.g., we can't write `Proxy @Type`), I don't think it really makes sense to add the braces to type constructors.   If we ever implemented THAT feature, then we can discuss which declarations should have explicit and which should have implicit parameters.  In the current set of examples, I find it odd that `T2` does not have braces, but `T3` does.</div><div><br></div><div>-Iavor</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Jun 20, 2018 at 2:15 PM Richard Eisenberg <<a href="mailto:rae@cs.brynmawr.edu" target="_blank">rae@cs.brynmawr.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space">I have posted the new proposal, at <a href="https://github.com/ghc-proposals/ghc-proposals/pull/148" target="_blank">https://github.com/ghc-proposals/ghc-proposals/pull/148</a><div><br></div><div>I've also updated #99 to clarify where the new syntax is allowed.</div><div><br></div><div>For Iavor's examples: </div><div><div><br></div><div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><blockquote type="cite"><div dir="ltr"><div><div>data T1 a = C1 a</div></div></div></blockquote><div><br></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>type T1 :: Type -> Type</div><div>C1 :: forall a. a -> T1 a</div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><br><blockquote type="cite"><div dir="ltr"><div><div>data T2 (a :: k) = C2 { f2 :: Proxy a }</div></div></div></blockquote><div><br></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>type T2 :: forall k. k -> Type</div><div>C2 :: forall k (a :: k). Proxy a -> T2 a</div><div>f2 :: forall k (a :: k). T2 a -> Proxy a</div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><br><blockquote type="cite"><div dir="ltr"><div><div>data T3 a where C3 :: forall k (a::k). Proxy a -> T3 a</div></div></div></blockquote><div><br></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>type T3 :: forall {k}. k -> Type</div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>C3 :: forall k (a :: k). Proxy a -> T3 a</div><br><blockquote type="cite"><div dir="ltr"><div><div>data T4 a where C4 :: forall {k} (a::k). Proxy a -> T3 a</div></div></div></blockquote><div><br></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>type T4 :: forall {k}. k -> Type</div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>C4 :: forall {k} (a :: k). Proxy a -> T3 a</div><br><blockquote type="cite"><div dir="ltr"><div><div>data T5 k a where C5 :: forall k (a::k). Proxy a -> T5 k a</div></div></div></blockquote><div><br></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>Rejected, as k is used dependently but is not lexically dependent. (This is no change.) It we have</div><div><br></div><div>> data T5 k (a :: k) where C5 :: forall k (a :: k). Proxy a -> T5 k a</div><div><br></div><div>we would get</div><div><br></div><div>type T5 :: forall k -> k -> Type</div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div>C5 :: forall k (a :: k). Proxy a -> T5 k a</div><br><blockquote type="cite"><div dir="ltr"><div><div>data T6 k a where C6 :: forall {k} (a::k). Proxy a -> T6 k a</div></div></div></blockquote></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div><div dir="ltr"><div><div><br></div><div>Rejected, like T6. If we revise to:</div><div><br></div><div>> data T6 k (a :: k) where C6 :: forall {k} (a::k). Proxy a -> T6 k a</div><div><br></div><div>we get</div><div><br></div><div>type T6 :: forall k -> k -> Type</div></div></div></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div><div dir="ltr"><div><div>C6 :: forall {k} (a::k). Proxy a -> T6 k a</div><div><br></div></div></div></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div><div dir="ltr"><div><div>I've updated the proposal itself to include these examples.</div><div><br></div><div>Does this help to clarify?</div></div></div></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><div><div dir="ltr"><div><div><br></div><div>Richard</div></div></div></div></div></div></div><div style="word-wrap:break-word;line-break:after-white-space"><div><div><br><blockquote type="cite"><div>On May 25, 2018, at 1:56 PM, Iavor Diatchki <<a href="mailto:iavor.diatchki@gmail.com" target="_blank">iavor.diatchki@gmail.com</a>> wrote:</div><br class="m_589329145798551894m_-6255680490502056640Apple-interchange-newline"><div><div dir="ltr">Hello,<div><br></div><div>well, I thought that Richard was going to write a new proposal based on the feedback here, but it sounds like he is planning to revise #99, and then write a separate new one.    I guess we should discuss the proposal again once the changes are in.   I would encourage Richard to add some text and examples to clarify exactly what's in the proposal and what's not, and how things are supposed to work.  Here are some examples, for which it would be illuminating (to me) to see the types/kinds of all names introduced.</div><div><br></div><div><div>data T1 a = C1 a</div><div>data T2 (a :: k) = C2 { f2 :: Proxy a }</div><div>data T3 a where C3 :: forall k (a::k). Proxy a -> T3 a</div><div>data T4 a where C4 :: forall {k} (a::k). Proxy a -> T3 a</div><div>data T5 k a where C5 :: forall k (a::k). Proxy a -> T5 k a</div><div>data T6 k a where C6 :: forall {k} (a::k). Proxy a -> T6 k a</div></div><div><br></div><div>-Iavor</div><div><br></div><br><div class="gmail_quote"><div dir="ltr">On Fri, May 25, 2018 at 2:02 AM Simon Peyton Jones <<a href="mailto:simonpj@microsoft.com" target="_blank">simonpj@microsoft.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div lang="EN-GB" link="blue" vlink="purple">
<div class="m_589329145798551894m_-6255680490502056640m_-4749116994332586989m_463251841758833202WordSection1"><p class="MsoNormal"><span style="font-size:12.0pt">I’m keen to get #99 into GHC in some form. 
<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:12.0pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:12.0pt">My motivation (which could be a fourth bullet in the proposal) is that it should be possible for a programmer to write a fully-explicit type signature for anything GHC can infer.  But currently we can’t. 
 For typeRep1 GHC infers the signature shown for typeRep3; but we can’t write it down.<u></u><u></u></span></p></div></div><div lang="EN-GB" link="blue" vlink="purple"><div class="m_589329145798551894m_-6255680490502056640m_-4749116994332586989m_463251841758833202WordSection1"><p class="MsoNormal"><span style="font-size:12.0pt"><u></u> <u></u></span></p><p class="MsoNormal" style="margin-left:36.0pt">based on the discussion so far, it seems that #99 in its current form might not be exactly what we want<u></u><u></u></p><p class="MsoNormal"><span style="font-size:12.0pt"><u></u> <u></u></span></p>
</div></div><div lang="EN-GB" link="blue" vlink="purple"><div class="m_589329145798551894m_-6255680490502056640m_-4749116994332586989m_463251841758833202WordSection1"><p class="MsoNormal"><span style="font-size:12.0pt">Can you summarise the reasons it might not be exactly what we want?<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:12.0pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:12.0pt">Simon<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:12.0pt"><u></u> <u></u></span></p>
<div style="border:none;border-left:solid blue 1.5pt;padding:0cm 0cm 0cm 4.0pt">
<div>
<div style="border:none;border-top:solid #e1e1e1 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal"><b><span lang="EN-US">From:</span></b><span lang="EN-US"> ghc-steering-committee <<a href="mailto:ghc-steering-committee-bounces@haskell.org" target="_blank">ghc-steering-committee-bounces@haskell.org</a>>
<b>On Behalf Of </b>Richard Eisenberg<br>
<b>Sent:</b> 24 May 2018 21:17<br>
<b>To:</b> Iavor Diatchki <<a href="mailto:iavor.diatchki@gmail.com" target="_blank">iavor.diatchki@gmail.com</a>><br>
<b>Cc:</b> <a href="mailto:ghc-steering-committee@haskell.org" target="_blank">ghc-steering-committee@haskell.org</a>; Joachim Breitner <<a href="mailto:mail@joachim-breitner.de" target="_blank">mail@joachim-breitner.de</a>><br>
<b>Subject:</b> Re: [ghc-steering-committee] Discussion on proposal #99: forall {k}<u></u><u></u></span></p>
</div>
</div></div></div></div><div lang="EN-GB" link="blue" vlink="purple"><div class="m_589329145798551894m_-6255680490502056640m_-4749116994332586989m_463251841758833202WordSection1"><div style="border:none;border-left:solid blue 1.5pt;padding:0cm 0cm 0cm 4.0pt"><p class="MsoNormal"><u></u> <u></u></p><p class="MsoNormal">I do plan on turning Joachim's recent suggestion into a separate proposal, and then to modify #99. But the modification would remove only the bit about classes, not the feature overall. I don't have time to do this now, though -- will do
 next week.<u></u><u></u></p>
<div><p class="MsoNormal"><u></u> <u></u></p>
</div>
<div><p class="MsoNormal">Richard<u></u><u></u></p>
<div><p class="MsoNormal"><br>
<br>
<u></u><u></u></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<div><p class="MsoNormal">On May 24, 2018, at 1:54 PM, Iavor Diatchki <<a href="mailto:iavor.diatchki@gmail.com" target="_blank">iavor.diatchki@gmail.com</a>> wrote:<u></u><u></u></p>
</div><p class="MsoNormal"><u></u> <u></u></p>
<div>
<div><p class="MsoNormal">Hello,<u></u><u></u></p>
<div><p class="MsoNormal"><u></u> <u></u></p>
</div>
<div><p class="MsoNormal">based on the discussion so far, it seems that #99 in its current form might not be exactly what we want, so I'd say that we should reject it for the moment.   Overall, I agree that it would be nice to come up with a consistent notation
 for things that are currently happening in GHC but we can't write, so perhaps we could revisit this with a revised proposal at a later time?<u></u><u></u></p>
</div>
<div><p class="MsoNormal"><u></u> <u></u></p>
</div>
<div><p class="MsoNormal">-Iavor<u></u><u></u></p>
</div>
<div><p class="MsoNormal"><u></u> <u></u></p>
</div>
<div><p class="MsoNormal"><u></u> <u></u></p>
</div>
<div><p class="MsoNormal"><u></u> <u></u></p>
</div>
</div><p class="MsoNormal"><u></u> <u></u></p>
<div>
<div><p class="MsoNormal">On Sat, May 5, 2018 at 8:48 PM Joachim Breitner <<a href="mailto:mail@joachim-breitner.de" target="_blank">mail@joachim-breitner.de</a>> wrote:<u></u><u></u></p>
</div>
<blockquote style="border:none;border-left:solid #cccccc 1.0pt;padding:0cm 0cm 0cm 6.0pt;margin-left:4.8pt;margin-right:0cm"><p class="MsoNormal">Hi,<br>
<br>
Am Mittwoch, den 02.05.2018, 16:10 -0400 schrieb Richard Eisenberg:<br>
> Joachim, you are always a fount of interesting ideas.<br>
> <br>
> > On May 2, 2018, at 2:51 PM, Joachim Breitner <mail@joachim-breitner<br>
> > .de> wrote:<br>
> > <br>
> >   class C k (a : k) where meth :: a<br>
> >   meth :: forall {k} a. C k a -> k -> Constraint<br>
> <br>
> I think this is brilliant. But not only for this proposal! Imagine<br>
> this:<br>
> <br>
> class Num a where<br>
>   fromInteger :: Integer -> a<br>
> <br>
> fromInteger :: Integer -> forall a. Num a => a<br>
> <br>
> If we do that, then #129 is essentially solved, at no further cost to<br>
> anyone. (Note that in all Haskell98-style code, no one will ever be<br>
> able to notice the changed type of fromInteger.)<br>
> <br>
> This approach also allows for the possibility of reordering<br>
> quantified type variables for Haskell98-style constructors, if anyone<br>
> should want to do it.<br>
> <br>
> And it allows for updated types (including quantified variable<br>
> ordering, etc.) for record selectors.<br>
> <br>
> And it allows (maybe?) for giving good types to GADT record<br>
> selectors:<br>
> <br>
> data X a where<br>
>   Foo :: { bar :: Int } -> X Int<br>
>   Quux :: { bar :: Bool } -> X Bool<br>
> bar :: X a -> a<br>
> <br>
> GHC currently rejects the declaration for X, but it could be accepted<br>
> if only we could specify the correct type of bar. And now we can. I<br>
> don't particularly want to cook up the typing rules here, but I don't<br>
> think I'm totally crazy.<br>
> <br>
> GADT record selectors aside, the rule for these could be that the<br>
> top-level type signature must be equivalent w.r.t. the subtype<br>
> relation with the original type signature. That is, if the new<br>
> signature is t1 and the old was t2, then t1 <: t2 and t2 <: t1. Easy<br>
> enough to check for. The implementation would probably do a little<br>
> worker/wrapper stunt.<br>
<br>
I smell a new proposal… what does this mean for #99? Will you want to<br>
revise it?<br>
<br>
Cheers,<br>
Joachim<br>
-- <br>
Joachim Breitner<br>
  <a href="mailto:mail@joachim-breitner.de" target="_blank">mail@joachim-breitner.de</a><br>
  <a href="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.joachim-breitner.de%2F&data=02%7C01%7Csimonpj%40microsoft.com%7Ca43c362fd18e4163aeba08d5c1b34be2%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C636627898179266033&sdata=1cwPEVKXCcP3DuCHXOFuA%2BbEBniRLjcKI%2BAZji5vR4Q%3D&reserved=0" target="_blank">
http://www.joachim-breitner.de/</a><br>
_______________________________________________<br>
ghc-steering-committee mailing list<br>
<a href="mailto:ghc-steering-committee@haskell.org" target="_blank">ghc-steering-committee@haskell.org</a><br>
<a href="https://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-steering-committee" target="_blank">https://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-steering-committee</a><u></u><u></u></p>
</blockquote>
</div><p class="MsoNormal">_______________________________________________<br>
ghc-steering-committee mailing list<br>
<a href="mailto:ghc-steering-committee@haskell.org" target="_blank">ghc-steering-committee@haskell.org</a><br>
<a href="https://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-steering-committee" target="_blank">https://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-steering-committee</a><u></u><u></u></p>
</div>
</blockquote>
</div><p class="MsoNormal"><u></u> <u></u></p>
</div>
</div></div></div></blockquote></div></div>
</div></blockquote></div><br></div></div></blockquote></div>
</div></blockquote></div><br></div></div></div></blockquote></div>