Are you expecting that this could be combined with &quot;where&quot; clauses?<br><br>for x in range1 where x%2==0, y in range2 where y%3==0 {}<br><br>for x in range1, y in range2 where x%2==0 &amp;&amp; y%3==0 {}<br><br>I think it&#39;s a good idea, but the implications may be less than obvious.<br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 9, 2015 at 12:37 PM <a href="mailto:krzysztof@siejkowski.net">krzysztof@siejkowski.net</a> via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">+1. Way more readable than nested loops and consistent with already existing syntax.<br>
<br>
<br>
-----Original Message-----<br>
From: Chris Eidhof via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;<br>
Reply: Chris Eidhof &lt;<a href="mailto:chris@eidhof.nl" target="_blank">chris@eidhof.nl</a>&gt;<br>
Date: December 9, 2015 at 9:00:26 PM<br>
To: <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a> &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;<br>
Subject:  [swift-evolution] Extending the for loop to have multiple clauses<br>
<br>
&gt; I think it could be really nice to extend the for-loop so that it can have multiple clauses.<br>
&gt; Much like in the if-let with multiple clauses, I could imagine a for-loop with multiple<br>
&gt; clauses:<br>
&gt;<br>
&gt; var cards: [(Suit,Rank)] = []<br>
&gt; for x in suits, y in ranks {<br>
&gt; cards.append((x,y))<br>
&gt; }<br>
&gt;<br>
&gt; This would be the same as writing:<br>
&gt;<br>
&gt; var cards: [(Suit,Rank)] = []<br>
&gt; for x in suits {<br>
&gt; for y in ranks {<br>
&gt; cards.append((x,y))}<br>
&gt; }<br>
&gt; }<br>
&gt;<br>
&gt; You could also do something like:<br>
&gt;<br>
&gt; for x in input1, y in (x..&gt; // Do something with (x,y)<br>
&gt; }<br>
&gt;<br>
&gt; In fact, once we would have that, we could combine both if-let and for, and make it more<br>
&gt; general, to end up with something like Haskell’s do-notation or C#’s LINQ. But that might<br>
&gt; be taking it too far...<br>
&gt;<br>
&gt; Chris<br>
&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;<br>
<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" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>