<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 Oct 27, 2017, at 9:42 PM, Howard Lovatt via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">I should qualify that I am not proposing removing local functions without replacing them with closures that have the same power.</div></div></blockquote><div><br class=""></div><div>If we can unify the two syntaxes, maybe. But even if that was possible, I’m leery because now named local functions will look quite different from local functions today:</div><div><br class=""></div><div>let myLocalFn = { (x: Int, y: Int) in x + y }</div><div><br class=""></div><div>vs</div><div><br class=""></div><div>func myLocalFn(x: Int, y: Int) { return x + y }</div><div><br class=""></div><div>Is that really an improvement? It looks different from non-local functions.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""> I don't believe powerful closures are something the compiler couldn't do, in fact I believe it is something that is relatively easy. I believe this because there isn't much difference between a function and a closure and because the function behaviour is easy to fake and therefore something the compiler could do (in fact do better than you can fake). Two of the example presented of things closures can't do are mutual recursion and generics, both are fakable:<div class=""><br class=""></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px" class=""><div class="">var isEven: ((UInt) -&gt; Bool)! = nil // Forward declaration!</div><div class="">var isOdd: ((UInt) -&gt; Bool)! = nil</div><div class="">isEven = { n in</div><div class="">&nbsp; &nbsp; if n == 0 {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; return true</div><div class="">&nbsp; &nbsp; } else {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; return isOdd(n - 1)</div><div class="">&nbsp; &nbsp; }</div><div class="">}</div><div class="">isOdd = { n in</div><div class="">&nbsp; &nbsp; if n == 0 {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; return false;</div><div class="">&nbsp; &nbsp; } else {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; return isEven(n - 1)</div><div class="">&nbsp; &nbsp; }</div><div class="">}</div><div class="">isEven(4) // True</div><div class="">isOdd(4) // False</div></blockquote></div></div></blockquote><div><br class=""></div><div>Ok, but again, how is this better than local functions?</div><div><br class=""></div><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><blockquote style="margin:0 0 0 40px;border:none;padding:0px" class=""><div class=""><br class=""></div><div class="">struct GenericIncrement&lt;T: Numeric&gt; {</div><div class="">&nbsp; &nbsp; let increment = { (n: T) -&gt; T in</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; n + 1</div><div class="">&nbsp; &nbsp; }</div><div class="">}</div><div class="">let int = GenericIncrement&lt;Int&gt;() // Reify increment and name mangle!</div><div class="">int.increment(1) // 2</div><div class="">let double = GenericIncrement&lt;Double&gt;()</div><div class="">double.increment(1.1) // 2.1</div></blockquote></div></div></blockquote><div><br class=""></div>Local types cannot capture values from outer scopes right now, so this does not give you the full power of a closure.</div><div><br class=""></div><div>The trouble with closures having their own generic parameter lists is that closures are values. So imagine you could write:</div><div><br class=""></div><div>let fn = { &lt;T&gt; (x: T) -&gt; T in x }</div><div><br class=""></div><div>What is the type of ‘fn’?</div><div><br class=""></div><div>You should be able to do,</div><div><br class=""></div><div>fn(3)</div><div>fn(“hello”)</div><div><br class=""></div><div>So fn has a polymorphic type. Now when a polymorphic closure is appears immediately on the right hand side of a ‘let’ binding, it is equivalent to a local function today. But you can also do stuff like</div><div><br class=""></div><div>let fn1 = { &lt;T&gt; (x: T, y: T) -&gt; T in x }</div><div>let fn2 = { &lt;T&gt; (x: T, y: T) -&gt; T in y }</div><div>let myFn = foo ? fn1 : fn2</div><div><br class=""></div><div>Now ‘myFn’ is a value with a polymorphic type that is not immediately known to be a closure literal. Actually implementing this properly would require a substantial rework of all layers of the compiler and runtime.</div><div><br class=""></div><div>I’m not saying any of this is impossible. It could certainly all be implemented with enough effort. However, there are two general concerns I have with all of this:</div><div><br class=""></div><div>1) Does implementing this functionality justify the cost, both in terms of potential regressions, or just the opportunity cost in the team not spending the time working on something else?</div><div><br class=""></div><div>2) How is it actually an improvement over local functions? If we make local functions look like closures, what have we actually gained? Local functions have the advantage that they look like functions — so a generic local function reads naturally to someone who’s used Swift before but has never seen a local function. On the other hand, a generic closure expression, were such a thing to exist, would be a new syntax that presumably would only appear in source rarely, confusing someone when they first encounter it.</div><div><br class=""></div><div>Perhaps what we really need is better control over captures from local functions. Adding capture lists to local functions is something I would not be opposed to for instance, and should be possible to implement without much pain.</div><div><br class=""></div><div>Slava</div><div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><div class=""><br class=""></div><div class="">The reason for showing code above is to demonstrate that the compiler could do this (in fact it could do better) - I am not suggesting anyone uses the above!&nbsp;</div></div></div><div class="gmail_extra"><br clear="all" class=""><div class=""><div class="gmail_signature" data-smartmail="gmail_signature">&nbsp; -- Howard.<br class=""></div></div>
<br class=""><div class="gmail_quote">On 28 October 2017 at 10:01, Slava Pestov via swift-evolution <span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">That sounds like a bug, and it could occur with closure expressions also, since at the SILGen level and below they’re basically the same thing. Please file a bug if you come up with a reduced test case.<br class="">
<br class="">
Slava<br class="">
<div class="HOEnZb"><div class="h5"><br class="">
&gt; On Oct 27, 2017, at 4:00 PM, Jon Gilbert &lt;<a href="mailto:swiftevolution@jongilbert.com" class="">swiftevolution@jongilbert.com</a><wbr class="">&gt; wrote:<br class="">
&gt;<br class="">
&gt; I have run into nondescript compiler crashes (like segmentation faults, etc.) when using local functions to do certain things, like wrapping the parent function’s escaping closure arguments in other closures that capture variables from the parent function’s local scope, especially when those variables themselves are function types that do the wrapping, and therefore take closures as arguments. (Of course, all of these closures taking generic arguments conforming to protocols with associated types made things extra interesting.)<br class="">
&gt;<br class="">
&gt; I don’t know if this makes local functions actively harmful, or if it means function types in capture lists need to support @escaping, but it does remind me to go back and try to reproduce those weird issues in a sample project or playground page so I can make a bug report to Apple.<br class="">
&gt;<br class="">
&gt; Jonathan<br class="">
&gt;<br class="">
&gt;&gt; On Oct 27, 2017, at 12:29, Slava Pestov via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">
&gt;&gt;<br class="">
&gt;&gt; I mean, we could remove a lot of language features without giving up turing completeness. But I’ve personally used local functions in multiple languages and found them useful. I certainly don’t see why the feature is actively harmful, which is the criteria for introducing a source breaking change in Swift 5.<br class="">
&gt;<br class="">
<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><br class="">
</div></div></blockquote></div><br class=""></div>
_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>