<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On 24 Mar 2016, at 21:08, Howard Lovatt &lt;<a href="mailto:howard.lovatt@gmail.com" class="">howard.lovatt@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class="">I use trailing closures all the time because I find the brackets too noisy, like ; at the end of a line is too noisy. The sort of code I use is:<div class=""><br class=""></div><div class="">&nbsp; &nbsp; let foo = myArray</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; .filter { $0 &amp; 1 == 1 }</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; .map { $0 + 1 }</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; .reduce(0) { $0 + $1 }&nbsp;<br class=""></div></div></blockquote></div><br class=""><div class="">This doesn’t really seem much neater or more readable to me than:</div><div class=""><br class=""></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>let foo = myArray</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>.filter({ $0 &amp; 1 == 1 })</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>.map({ $0 + 1 })</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>.reduce(0, { $0 + $1 })</font></div><div class=""><br class=""></div><div class="">While they may add a small amount of noise, in the latter case the parenthesis clarifies that each is a method, and what all of its arguments are, and don’t use any custom syntax. Of course this assumes that .reduce() would have an optional label on its closure argument.</div></body></html>