<div dir="ltr">I think the important thing to consider is, what advantage would such a feature provide *other* than to reduce keystrokes? (I don&#39;t personally think that optimizing for keys pressed by itself should be a goal.)<div><br></div><div>In the case of closures, single expression closures without &quot;return&quot; improve readability because such closures are often chained for functional programming patterns:</div><div><br></div><div>    someArray.filter { $0.isFloopy }.map { $0.grobber }</div><div><br></div><div>Having &quot;return&quot; there would be noise that detracts from understanding what&#39;s going on in that algorithm. It&#39;s also worth noting that in this context, the closure *itself* is also an expression.</div><div><br></div><div>In functions, property getters, and subscripts, the same constraints don&#39;t really hold. They&#39;re declarations, not expressions, so they don&#39;t chain together and they&#39;re not subject to the same readability problems as closure expressions.</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Sat, Oct 7, 2017 at 9:59 AM Nevin Brackett-Rozinsky 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"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Oct 7, 2017 at 11:24 AM, Xiaodi Wu <span dir="ltr">&lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This has been brought up on the list before. For instance:<br><br><a href="https://github.com/apple/swift-evolution/pull/608" target="_blank">https://github.com/apple/swift-evolution/pull/608</a><br><br>Chris Lattner’s response at that time was:<br><br>‘Just MHO, but I consider this syntactic sugar, not a fundamental feature that fits the goal of Swift 4 stage 2.  <br><br>‘I’m also pretty opposed to doing it at any time.  The rationale of “implicit return” in closures is specifically because they are limited to a single expression, which makes the semantics “obvious”.  This was carefully considered.’</blockquote><div><br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>This objection is not applicable, because we are discussing the possibility to omit “return” exactly when there is a single expression in the getter.</div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>Nevin</div></div></div></div>
_______________________________________________<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>