<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Aug 29, 2016 at 4:15 PM, DifferentApps info 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">Thanks for your pattern suggestion.<br>
But it would be also possible to switch between implementations with the proposed syntax as shown bellow:<br>
<br>
/{<br>
   &lt;code 1&gt;<br>
}/<br>
do {<br>
   &lt;code 2&gt;<br>
<div class="HOEnZb"><div class="h5">}<br>
<br></div></div></blockquote><div><br></div><div>That would be greatly inferior, as you&#39;d have to edit the code in four distinct places, versus a single one (change #if false to #if true).</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">
<br>
Le 29 août 2016 à 22:53, Magnus Ahltorp &lt;<a href="mailto:map@kth.se">map@kth.se</a>&gt; a écrit :<br>
<br>
&gt;&gt; 29 Aug. 2016 22:16 DifferentApps info &lt;<a href="mailto:andre_ponzo@differentapps.com">andre_ponzo@differentapps.com</a><wbr>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; The advantage is that you do not need to define a conditional flag for the #if.<br>
&gt;<br>
&gt; The good news is, you don&#39;t.<br>
&gt;<br>
&gt; #if false<br>
&gt;  print(&quot;Disabled code&quot;)<br>
&gt; #endif<br>
&gt;<br>
&gt; which is a time-tested way of writing C code (using #if 0).<br>
&gt;<br>
&gt; From the Swift changelog, where they even call it an idiom of C:<br>
&gt;<br>
&gt; 2014-04-30<br>
&gt; […]<br>
&gt; * You can now use the `true` and `false` constants in build configurations,<br>
&gt;  allowing you to emulate the C idioms of `#if 0` (but spelled `#if false`).<br>
&gt;<br>
&gt; One pattern I use all the time, both in C and in Swift, is this:<br>
&gt;<br>
&gt; #if false<br>
&gt; &lt;experimental code&gt;<br>
&gt; #else<br>
&gt; &lt;old code&gt;<br>
&gt; #endif<br>
&gt;<br>
&gt; which makes it possible to switch between the implementations quickly, something you cannot do with the proposed syntax.<br>
&gt;<br>
&gt;&gt; Code disabling (with /{...}/) is a tool useful when developing algorithm, and disabled code should not be aimed to remain definitively in a Swift file.<br>
&gt;<br>
&gt; Which is in no way dependent on if you use the proposed syntax, traditional comments, or conditional compilation.<br>
&gt;<br>
&gt; /Magnus<br>
&gt;<br>
<br>
______________________________<wbr>_________________<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/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
</div></div></blockquote></div><br></div></div>