You can keep going on this line of thinking, e.g.:<div><br></div><div>    let posC = { max(0, $0) }</div><div><br></div><div>Is legal but you have to write:</div><div><br></div><div>    func posF(x: Int) -&gt; Int { return max(0, x) }<br><br>On Thursday, 4 February 2016, Chris Liscio via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>Why can’t we use shorthand argument names and implicit returns when specifying the get and set blocks in a computed property? I.e., Why must we refer to newValue in the implementation of set, and not $0 like we do in closures? Also, why do we need ‘return’?</div><div><br></div><div>Once you get used to the shorthand, you kinda want to use it all over…</div><div><br></div><div>This question came up recently when I was writing a façade for another class, and would have liked to written something like the following:</div><div><br></div><div><font face="Menlo">class Façade {</font></div><div><font face="Menlo">  private var _wrapped: Something</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">  var wrappedProperty: Int {</font></div><div><font face="Menlo">    get { _wrapped.property }</font></div><div><font face="Menlo">    set { _wrapped.property = $0 }</font></div><div><font face="Menlo">  }</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">  var multipliedProperty: Int { _wrapped.property * 42 }</font></div><div><font face="Menlo">}</font></div><div><br></div>I apologize if this has already been discussed/requested before. I searched the archives and didn’t turn up anything that referred to this specifically.<div><br></div><div>Thanks!</div><div><br></div><div><div>Chris Liscio</div><div><a href="http://supermegaultragroovy.com" target="_blank">http://supermegaultragroovy.com</a></div><div>Learn _your_ music with Capo: <a href="http://capoapp.com" target="_blank">http://capoapp.com</a></div></div><div><br></div></div></blockquote></div><br><br>-- <br>  -- Howard.<br><br>