You should test it out — I&#39;d guess there&#39;s a good chance it gets optimized out.<br><div class="gmail_quote"><div dir="ltr">On Thu, Jul 28, 2016 at 2:58 PM Rick Mann &lt;<a href="mailto:rmann@latencyzero.com">rmann@latencyzero.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Yeah, I suppose that works. Feels a bit clunky, like the language lacks specific support for this (in that it provides specific support for so many other common constructs). But I guess I can make do with that.<br>
<br>
I suppose there&#39;s a bit of a performance hit, in that constructing an empty array and iterating over it is more expensive than a simple nil check, but that&#39;s unlikely to cause issues in practice.<br>
<br>
Thanks.<br>
<br>
&gt; On Jul 28, 2016, at 14:56 , Jacob Bandes-Storch &lt;<a href="mailto:jtbandes@gmail.com" target="_blank">jtbandes@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; How about &quot;for item in someOptionalContainer ?? []&quot;  ?<br>
&gt;<br>
&gt; On Thu, Jul 28, 2016 at 2:55 PM, Rick Mann via swift-users &lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt; wrote:<br>
&gt; I often call methods that return an optional collection. I then iterate over it. The problem is, it&#39;s a bit cumbersome to write:<br>
&gt;<br>
&gt;      if let container = someOptionalContainer<br>
&gt;     {<br>
&gt;         for item in container<br>
&gt;         {<br>
&gt;         }<br>
&gt;     }<br>
&gt;<br>
&gt; I wish I could just write<br>
&gt;<br>
&gt;     for item in someOptionalContainer<br>
&gt;     {<br>
&gt;     }<br>
&gt;<br>
&gt; such that if the optional is nil, it just skips the iteration altogether.<br>
&gt;<br>
&gt; Is there a syntax for that (especially in Swift 3)?<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Rick Mann<br>
&gt; <a href="mailto:rmann@latencyzero.com" target="_blank">rmann@latencyzero.com</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; swift-users mailing list<br>
&gt; <a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-users</a><br>
&gt;<br>
<br>
<br>
--<br>
Rick Mann<br>
<a href="mailto:rmann@latencyzero.com" target="_blank">rmann@latencyzero.com</a><br>
<br>
<br>
</blockquote></div>