<div dir="ltr">On Thu, May 25, 2017 at 1:27 PM, John McCall 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:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><span class="gmail-">&gt; On May 25, 2017, at 2:23 PM, Nevin Brackett-Rozinsky via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt; One possibility is to make parentheses consistently meaningful in closure argument lists, so that “(a, b)” would exclusively mean “there is one parameter of tuple-type, which is being destructured”, while “a, b” without parentheses would exclusively mean “there are two parameters”.<br>
&gt;<br>
&gt; That way you can destructure a tuple parameter if you wish (by using parentheses) or you can leave the tuple intact (by listing a single identifier without parentheses).<br>
<br>
</span>The problem with this is that we also need some way to be explicit about the return type, and it would be strange to allow (and require!)<br>
  { a, b -&gt; Int in }<br>
when that&#39;s not at all a valid way to write a function type.  Also it would be an enormous source break, even worse than this problem.<br>
<br>
That said, I&#39;m quite sympathetic to the idea that directly destructuring tuples in closure parameter lists is too useful to lose, even if it&#39;s ambiguous.<br></blockquote><div><br></div><div>The option of using the keyword let to disambiguate, proposed somewhere above or on GitHub, is attractive here:</div><div><br></div><div>{ (a, b) -&gt; Int in } // two parameters<br></div><div><div>{ let (a, b) -&gt; Int in } // destructuring one parameter</div></div><div><br></div><div>{ a, let (b, c) -&gt; Int in } // destructuring two parameters</div><div>{ let a, (b, c) -&gt; Int in } // still destructuring two parameters</div><div>{ let (a, (b, c)) -&gt; Int in } // destructuring one parameter</div><div>{ (a, (b, c)) -&gt; Int in } // error: add &#39;let&#39; to destructure second parameter</div><div><br></div></div></div></div>