<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div></div><div>I think the goal of SE 0110 and to a lesser extent 0066 was to disallow this level of intelligence in the compiler. While technically feasible, it's not desirable to overload parentheses in this manner.</div><div><br>On May 29, 2017, at 3:41 PM, Nevin Brackett-Rozinsky via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, May 29, 2017 at 3:18 PM, Vladimir.S <span dir="ltr">&lt;<a href="mailto:svabox@gmail.com" target="_blank">svabox@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-">On 29.05.2017 21:08, Nevin Brackett-Rozinsky wrote:</span><span class="gmail-">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
barTuple{ (x, y) in }&nbsp; &nbsp;// valid, destructuring one tuple<br>
barTuple{ ((x, y)) in } // valid, destructuring one tuple with optional parentheses<br>
</blockquote>
<br></span>
Here is the problem for me. According to SE-0066 closure declared as {(x,y) in} should be of type (Int,Int)-&gt;() and not ((Int,Int))-&gt;().<br>
Why do you want to be able to pass wrong function/closure type into barTuple?</blockquote><div><br></div><div>&nbsp;I don’t.</div><div><br></div><div>I want the compile to infer from context whether “{ (x, y) in }” is of type “(_, _) -&gt; _” with the optional parentheses included, or of type “((_, _)) -&gt; _” with the optional parentheses elided. This is similar to how we use context to determine whether “1” is of type Int or Double or something else entirely.</div><div><br></div><div>If a closure appears in a context where it can only accept a tuple, such as mapping a dictionary, then obviously its type should have a tuple parameter. If a closure appears in a context where it can only accept two arguments, then obviously its type should have two parameters.</div><div><br></div><div>I want the compiler to figure out, when possible from context, whether the optional parentheses were included, so it “just works” for developers.</div><div><br></div><div>Nevin</div><div><br></div></div></div></div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></body></html>