<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On May 24, 2017, at 12:51 PM, Pavel Yaskevich &lt;<a href="mailto:pavel.yaskevich@gmail.com" class="">pavel.yaskevich@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div class="gmail_extra">Hi Tony,</div><div class="gmail_extra"><br class=""></div><div class="gmail_extra"><div class="gmail_quote">On Wed, May 24, 2017 at 12:37 PM, Jose Cheyo Jimenez via swift-evolution<span class="Apple-converted-space">&nbsp;</span><span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span><span class="Apple-converted-space">&nbsp;</span>wrote:<br class=""><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex;"><div style="word-wrap: break-word;" class="">The way I interpreted SE-110 is that it was suppose to address anonymous arguments.&nbsp;<div class=""><br class=""></div><div class="">Instead of using $0.0, $0.1, One needs to use $0, $1 when there are multiple arguments.&nbsp;<div class=""><br class=""></div><div class="">I was not aware of any implications for explicitly named parameters.&nbsp;</div><div class=""><br class=""></div><div class="">Perhaps the issue is with the signature of forEach. Does it need to be a nested tuple?</div><div class=""><br class=""></div><div class="">public&nbsp;func&nbsp;forEach(_&nbsp;body: ((key: Key, value: Value))&nbsp;throws&nbsp;-&gt;&nbsp;Void)&nbsp;<wbr class="">rethrows<br class=""></div></div></div></blockquote><div class=""><br class=""></div><div class="">Jose is right about this one, since the signature of forEach is a tuple nested into paren it means that `forEach` expects a single argument</div><div class="">of a tuple type instead of two arguments, such "tuple argument destructuring" was supported by Swift 3 but after SE-0110 no longer is</div><div class="">because type-checker is preserving top level parens in parameters/arguments.&nbsp;</div><div class=""><br class=""></div><div class="">Best Regards, Pavel.</div></div></div></div></div></blockquote><div><br class=""></div>Well, frankly, I don’t think we should ship with such a glaring usability regression.</div><div><br class=""></div><div>What’s the mitigation plan? Perhaps we should wholesale revert it until we have time to reconsider the fallout?</div><div><br class=""></div><div>- Tony</div><div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div class="gmail_extra"><div class="gmail_quote"><div class="">&nbsp;<br class=""></div><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex;"><div style="word-wrap: break-word;" class=""><div class=""><div class=""><div class=""><div class=""><br class=""></div><div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class=""><div class="gmail-h5"><div class="">On May 24, 2017, at 12:12 PM, Tony Parker via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="gmail-m_6296259074267002623Apple-interchange-newline"></div></div><div class=""><div class=""><div class="gmail-h5"><div style="word-wrap: break-word;" class="">Hi everyone,<div class=""><br class=""></div><div class="">We received a pull request in swift-corelibs-foundation which is apparently in response to a language change for SE-0110.</div><div class=""><br class=""></div><div class="">It turns this perfectly reasonable code:</div><div class=""><div class=""><br class=""></div><div class=""><font face="Menlo" class="">- &nbsp; &nbsp; &nbsp; &nbsp;self.forEach&nbsp;{ (keyItem, valueItem)&nbsp;in</font></div><div class=""><br class=""></div><div class="">into this:</div><div class=""><br class=""></div><div class=""><br class=""><font face="Menlo" class="">+ &nbsp; &nbsp; &nbsp; &nbsp;self.forEach&nbsp;{ (arg)&nbsp;in<br class="">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;let&nbsp;(keyItem, valueItem)&nbsp;=&nbsp;arg<br class=""></font><br class="">Is that really the design pattern we want to encourage? What was wrong with the previous code?</div><div class=""><br class=""></div><div class="">(<a href="https://github.com/apple/swift-corelibs-foundation/pull/995/files" target="_blank" class="">https://github.com/apple/<wbr class="">swift-corelibs-foundation/<wbr class="">pull/995/files</a>)</div></div><div class=""><br class=""></div><div class="">- Tony</div><div class=""><br class=""></div></div></div></div>______________________________<wbr class="">_________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank" class="">https://lists.swift.org/<wbr class="">mailman/listinfo/swift-<wbr class="">evolution</a><br class=""></div></blockquote></div><br class=""></div></div></div></div></div><br class="">______________________________<wbr class="">_________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/<wbr class="">mailman/listinfo/swift-<wbr class="">evolution</a></blockquote></div></div></div></div></blockquote></div><br class=""></body></html>