<div dir="ltr">When I started using Swift, and wanted to learn the syntax for closures, I found the &quot;in&quot; token very confusing. I probably would have figured it out at least a half hour sooner, if it had been a different word, or an operator. I kept thinking &quot;that can&#39;t be right, I must be misinterpreting the documentation&quot;  <div><br></div><div>Once you learn the syntax once, it&#39;s not a practical issue ever again. Still, it&#39;s kinder to new learners, and reads better, if the syntax uses something other than &quot;in&quot; </div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 22, 2015 at 1:54 AM, Daniel Valls Estella via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> 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">Just to add my point of view as language user. I don’t know so much about compilers and neither have many familiarity with language grammars. I like to  learn, and this list helps.<div><br></div><div>I think clousures are strangely written and break some coherence. I agree with Alexander on that.</div><div>But I don’t like the proposed solution.</div><div><br></div><div>In the other side, I think trailing closures are a really a great feature, I like a lot.</div><div>But I feel it’s a bit confusing in some way, as Alexander pointed. As if it was the body definition of the called function.</div><div><br></div><div>To throw an idea, the <b>with</b> keyword:</div><div><br></div><div><br></div><div><div><font face="Courier New">with (  <b>parameters</b> ) -&gt; <b>return_type</b> {</font></div><div><font face="Courier New">    <b>statements</b></font></div><div><font face="Courier New">}</font></div><div><font face="Courier New"><br></font></div><div><font face="Courier New"><br></font></div></div><div><div><font face="Courier New">sorted = names.sort( <b>with</b>(s1: String, s2: String) -&gt; Bool {</font></div><div><font face="Courier New">    return s1 &gt; s2</font></div><div><font face="Courier New">})</font></div><div><font face="Courier New"><br></font></div></div><div><font face="Courier New"><br></font></div><div><div><font face="Courier New">sorted = names.sort( <b>with</b>(s1, s2){  return s1 &gt; s2 } )</font></div><div><font face="Courier New"><br></font></div><div><font face="Courier New"><br></font></div><div><div><font face="Courier New">reversed = names.sort( <b>with</b>(s1, s2){ s1 &gt; s2 } )</font></div><div><font face="Courier New"><br></font></div><div><font face="Courier New"><br></font></div><div><div><font face="Courier New">reversed = names.sort( { $0 &gt; $1 } )   </font></div><div><font face="Courier New">OR? reversed = names.sort( <b>with</b>{ $0 &gt; $1 } )</font></div><div><font face="Courier New"><br></font></div><div><font face="Courier New"><br></font></div></div></div></div><div><font face="Courier New">reversed = names.sort(&gt;)</font></div><div><font face="Courier New">OR? reversed = names.sort(<b>with</b> &gt;)</font></div><div><font face="Courier New"><br></font></div><div><font face="Courier New"><br></font></div><div><div><font face="Courier New">reversed = names.sort()  <b>with</b> { $0 &gt; $1 }   // I think clarifies it is an input to exeute not a definition</font></div><div><font face="Courier New"><br></font></div></div><div><font face="Courier New"><br></font></div><div><div><font face="Courier New">reversed = names.sort <b>with</b> { $0 &gt; $1 }  // I think clarifies it is an input to exeute not a definition</font></div><div><br></div><div><br></div></div><div>Thanks!</div><div><br></div><div><br></div><div>Daniel</div><div><br></div><div><br></div><div><div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">Daniel Valls Estella · tel. 659.910.830 · <a href="mailto:daniel@upzzle.com" target="_blank">daniel@upzzle.com</a></div>
</div>
<br><div><blockquote type="cite"><div>El 22 des 2015, a les 7:57, Thorsten Seitz via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; va escriure:</div><div><div class="h5"><br><div><div>Well, I&#39;m actually happy with the current closure syntax as it allows very succinct simple cases and trailing closures as Chris has already pointed out.<br><br><blockquote type="cite">Am 21.12.2015 um 23:44 schrieb Alexander Regueiro via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;:<br><br>Okay, I assume you are aware this essentially the same syntax as used in languages like C# and Python, yes? I’m not sure there are any problems in those languages with it.<br><br><blockquote type="cite">If you dig through (very early) history you’ll see that we had this.  There are a couple of problems with it:<br><br>1) It punishes simple cases like “X.sort { $1 &lt; $0 }”, along with lots of simple map and filter closures.<br></blockquote><br>Not really. The above example would just be `X.sort func { $1 &lt; $0 }” or &quot;X.sort \ { $1 &lt; $0 }` in my proposed syntax. Also, it would be nice to have all operators implicitly<br></blockquote><br>Having &quot;func&quot; or the backslash crammed in there is really ugly and unreadable IMHO.<br><br>And in Haskell you don&#39;t have braces for the body to begin with and you would have to enclose the closure in parenthesis if it is part of an expression like your examples so in effect it would look quite similar, i.e. having the parameters within the parenthesis (sure, the semantics are different, but I made argument just to demonstrate that what looks good in one syntactic environment might not look good in another).<br><br><blockquote type="cite"><blockquote type="cite">2) It reads really weird in trailing closure cases.<br></blockquote><br>Honestly, I strongly dislike trailing closures. I don’t think they add much, and moreover they use a confusing syntax that make the whole function call look superficially like a function declaration (or indeed the whole thing being a closure).<br></blockquote><br>Trailing closures are a great feature IMHO because they make the code much more readable by allowing constructs to look similar to control flow statements.<br>This allows creating very readable DSLs.<br><br><br><blockquote type="cite"><blockquote type="cite">Lets step back: What problems are you trying to solve with the current closure syntax?<br></blockquote><br>Readability, mainly. I think this is a big improvement. <br></blockquote><br>Well, I think it&#39;s the opposite for the simple cases and for trailing closures. <br><br><br><blockquote type="cite">Then there’s similarity with other languages, which is minor, but nice. I don’t know any language that uses a syntax like the current one of Swift.<br></blockquote><br>Smalltalk and Ruby immediately come to mind and I&#39;m sure there are others.<br><br>Scala has a trailing closure syntax which is similar to Swift&#39;s syntax as well.<br><br>-Thorsten <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" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div></div></div></div></blockquote></div><br></div>
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=l3fs1g-2F466j3y5fD5Q61KddsTTCmXL0uxw3XoAMFFNjQlVfpllWez4ZONb2YGcc0-2B4Uer4Pp0J8iBXoG0MwB2sl6fkrMXchP-2B8jFK83qO-2FcTP8u6Rj5u8rHBw3gwETTPO9MGZk48eRbeynFtTkloBu7gcGq1U8GemsjE74TYQBZOnq4Gf1WW7xH9utPf-2ByU9YRE2ejnGOwMr0lRBeOpo1VsgkMCDC39Khiv78M7RDt4-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important">
</div>
<br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">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>
<br></blockquote></div><br></div>