<div dir="ltr">On Mon, Jul 11, 2016 at 1:16 AM, David Owens II via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><span class=""><blockquote type="cite"><div>On Jul 10, 2016, at 10:53 PM, Austin Zheng &lt;<a href="mailto:austinzheng@gmail.com" target="_blank">austinzheng@gmail.com</a>&gt; wrote:</div><br><div><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>On Jul 10, 2016, at 10:30 PM, David Owens II &lt;<a href="mailto:david@owensd.io" target="_blank">david@owensd.io</a>&gt; wrote:</div><div><div style="word-wrap:break-word"><div><blockquote type="cite"><div><div style="word-wrap:break-word"><div><blockquote type="cite"><div><div dir="auto"><div><br></div><div>I wish the core team or the author of the proposal came to this thread and engaged again with the community. </div></div></div></blockquote><div><br></div><div>I&#39;m not inclined to spend time engaging with people who couldn&#39;t be bothered to give feedback during the week-long official review period.</div></div></div></div></blockquote><div><br></div><div>Not all people &quot;couldn’t be bothered” but had life events, such as moving across states with four kids, that prevented them from being able to engage during the official review period. </div></div></div></div></blockquote><div><br></div><div>I hope your move went smoothly. More generally, there will always be people with good reasons for not being able to participate in the review process, but the procedure is set: one week of formal discussion, followed by a decision by the core team. If a proposal should be re-reviewed or amended, someone should submit (or at least draft) a follow-up proposal; none of the other proposals that have been accepted have been taken up for re-review by the core team based merely on reviews that were submitted after the review period ended (and there have been at least a few whose acceptance was very controversial).</div></div></div></div></blockquote><div><br></div></span><div>Sure, the review period is fine. I think it’s unreasonable to say that questions, clarifications, or feedback should simply be ignored because it’s outside of the review window. If the feature is implemented and checked in, fine, but we’re still aways from there.</div><div><br></div><div>Regardless, my feedback was more about clarification on what is actually being changed for the workflow because I found no real answers in the proposal or the thread. I found where some concerns were made, but no real solutions to those concerns. Maybe I just overlooked them.</div><span class=""><br><blockquote type="cite"><div style="word-wrap:break-word"><div><blockquote type="cite"><div style="word-wrap:break-word"><div><div>I’ve read through all of the posts that I see in my mailbox regarding this topic and I’ve yet to see any real answer to the concerns of tooling, typealias usage, closures, and code readability and maintainability concerns under this new proposal. This is the closest I’ve seen (from Douglas Gregor a few days ago):</div><div><br></div><div><blockquote type="cite">The core team’s intent is that one can add cosmetic labels to function types, but that those labels are not (cannot be) used at the call site, e.g.,</blockquote><div><br></div><div>Do you have specific post in mind that addresses the these concerns? Maybe I’m just missing them, but I really don’t see those addressed and they are not mentioned in the proposal at all.</div><div><br></div><div>Let’s say I want to model a problem regarding some library functions that work with resizing some image type. Today, if I did that, the tooling would give me auto-completion for all of the parameter labels and the code is very legible. </div><div><br></div><div>Note that both `original` and `resized` get auto-completed for us here. This provides great code clarity and insights. This is also self-documenting code.</div><div><br></div><div>However, under this proposal as accepted (as I understand it), we are left with this:</div><div><br></div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><div style="margin:0px;line-height:normal"><span style="color:#bb2ca2">func</span><span> doResizeC(image: </span><span style="color:#703daa">Image</span><span>, completed: (</span><span style="color:#703daa">Image</span><span>, </span><span style="color:#703daa">Image</span><span>) -&gt; </span><span style="color:#703daa">Void</span><span>) {</span></div><div style="margin:0px;line-height:normal"><span>    </span><span style="color:#bb2ca2">let</span><span> newData = image.data</span></div><div style="margin:0px;line-height:normal"><span>    </span><span style="color:#bb2ca2">let</span><span> newSize = image.size</span></div></div></div></div></div></div></blockquote><div><br></div><div>You can still have labels in the type: `completed: (original: Image, resized: Image)`.</div></div></div></blockquote><div><br></div></span><div>Labels that aren’t enforced or checked by the compiler are effectively worthless; they may as well be comments. This makes those labels allowed on typealiases equally as effective.</div><div><br></div><div>I also find it extremely strange that these labels will be allowed as source code that can never be verified or used in other places. It seems we are simply trading one set of inconsistencies for another.</div><span class=""><div><br></div><blockquote type="cite"><div style="word-wrap:break-word"><div><br><blockquote type="cite"><div style="word-wrap:break-word"><div><div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><div style="margin:0px;line-height:normal;min-height:13px"><span></span><br></div><div style="margin:0px;line-height:normal;color:rgb(0,132,0)"><span>    </span><span>// do some work that&#39;s really slow...</span></div><div style="margin:0px;line-height:normal;min-height:13px"><span>    </span><br></div><div style="margin:0px;line-height:normal"><span>    completed(image, Image(data: newData, size: newSize))</span></div></div></div></div></div></div></blockquote><div><br></div><div>This is definitely a problem. I am considering writing a follow-up proposal that would allow for compound naming of values of function type, which would alleviate this problem: `let foo(x:y:) : (Int, Int) -&gt; Void`, which was brought up a couple of times during the review thread. (This was going to be part of the original proposal, but was removed for various reasons.)</div></div></div></blockquote></span></div><br><div>Which just gets you back to this syntax for closures:</div><div><br></div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><span style="color:#bb2ca2">func</span><span> doResizeB(image: </span><span style="color:#703daa">Image</span><span>, completed: (original: </span><span style="color:#703daa">Image</span><span>, resized: </span><span style="color:#703daa">Image</span><span>) -&gt; </span><span style="color:#703daa">Void</span><span>)</span></div></div><div><span><br></span></div><div><span>Unless you really want to try and get parameter name syntax changed to match your example:</span></div><div><span><br></span></div><div><span><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><span style="color:#bb2ca2">func</span><span> doResizeB(image: </span><span style="color:#703daa">Image</span><span>, completed(original:resized:): (</span><span style="color:#703daa">Image</span><span>, </span><span style="color:#703daa">Image</span><span>) -&gt; </span><span style="color:#703daa">Void</span><span>)</span></div><div><span><br></span></div><div>Or maybe something else… I guess I will have to wait for the proposal.</div></span></div></div></blockquote><div><br></div><div>What makes sense to me is for the follow-on proposal to propose a notation that permits mandatory external labels, while the for-your-reference-only labels now left in the type annotation are treated as internal labels. That is, for a function:</div><div><br></div><div>`func frobnicate(with foo: Int, and bar: Int)`</div><div><br></div><div>The corresponding notation could be</div><div><br></div><div>`let frobnicate(with:and:) : (foo: Int, bar: Int)`</div><div><br></div><div> </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"><div><span><div></div><div>-David</div></span></div></div><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div></div>