<div dir="ltr">+1. I&#39;ve built APIs before where I wanted a method to take a closure that had multiple arguments, but where I would also like the client to be able to ignore the extra arguments if they didn&#39;t need that level of detail, and it would be nice to not require them to acknowledge those extra parameters with `_`. Right now, I have to provide multiple overloads for that:<br><div><br></div><div>func foo(body: (Arg1, Arg2, Arg3) -&gt; Result) { ... }</div><div><div style="font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">func foo(body: (Arg1, Arg2) -&gt; Result) { ... }</div><div style="font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">func foo(body: (Arg1) -&gt; Result) { ... }</div><br class="inbox-inbox-Apple-interchange-newline"></div><div>Allowing closure to just work with fewer arguments would make this bloat go away.</div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, May 13, 2016 at 9:25 AM Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
Sent from my iPad<br>
<br>
&gt; On May 13, 2016, at 11:16 AM, Joe Groff via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;&gt; On May 13, 2016, at 9:13 AM, Rob Napier via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Currently if a closure takes a value, it requires &quot;_ in&quot; to note that the value is ignored. This makes sense in many cases, but creates a bit of a mess in the case of an empty, void-returning closure:<br>
&gt;&gt;<br>
&gt;&gt; doThing(withCompletion: { _ in })<br>
&gt;&gt;<br>
&gt;&gt; I&#39;d like to suggest that the compiler promote the empty closure literal {} to any void-returning closure type so that this could be written:<br>
&gt;&gt;<br>
&gt;&gt; doThing(withCompletion: {})<br>
&gt;&gt;<br>
&gt;&gt; This encourages the use of empty closures over optional closures, which I think is open for debate. In general I try to avoid optionals when they can be precisely replaced with a non-optional value. Furthermore, most Cocoa completion handlers are not optional.<br>
&gt;&gt;<br>
&gt;&gt; The alternative is to not do this, but encourage that any closure that could reasonably be empty should in fact be optional. I would then want Cocoa functions with void-returning closures to be imported as optionals to avoid &quot;{ _ in }&quot;.<br>
&gt;<br>
&gt; +1. In general, I think we should allow implicit arguments, without requiring the closure to use all the implicit $n variables like we do today. These should all be valid:<br>
&gt;<br>
&gt; let _: () -&gt; () = {}<br>
&gt; let _: (Int) -&gt; () = {}<br>
&gt; let _: (Int, Int) -&gt; Int = { 5 }<br>
&gt; let _: (Int, Int) -&gt; Int = { $0 }<br>
&gt; let _: (Int, Int) -&gt; Int = { $1 }<br>
<br>
+1.  Having to explicitly discard unnecessary arguments bugs me every time I have to do it.<br>
<br>
&gt;<br>
&gt; -Joe<br>
&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt; <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>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>
</blockquote></div>