<div dir="ltr"><div><div>The proposed extension looks to me like is iterating both the suits and rank at the same time. In that case I think is a great idea.</div><div><br></div><div><span style="font-size:12.8px">var cards: [(Suit,Rank)] = []</span><br style="font-size:12.8px"><span style="font-size:12.8px">for x in suits, y in ranks {</span><br style="font-size:12.8px"><span style="font-size:12.8px">  cards.append((x,y))</span><br style="font-size:12.8px"><span style="font-size:12.8px">}</span></div></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">What I am expecting:</span><br></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">x1, y1</span></div><div><span style="font-size:12.8px">x2, y2</span></div><div><span style="font-size:12.8px">x3, y3</span></div><div><span style="font-size:12.8px">etc</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">This reminds me that this is one of the ways I use the C-style for-loop. </span></div><div><span style="font-size:12.8px">The alternative now:</span></div><div><span style="font-size:12.8px"><br></span></div><div><span class="">for</span><span class=""> (index, x) </span><span class="">in</span><span class=""> </span><span class="">suits</span><span class="">.</span><span class="">enumerate</span><span class="">(){</span></div><div><span class="">   </span><span class="">let</span><span class=""> y = </span><span class="">ranks</span><span class="">[index]</span></div><div><span class="">   </span><span class="">cards</span><span class="">.</span><span class="">append</span><span class="">((x,y))</span></div><div>
<p class=""><span class="">}</span></p><p class=""><br></p></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px"><br></span></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 9, 2015 at 12:00 PM, Chris Eidhof 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">I think it could be really nice to extend the for-loop so that it can have multiple clauses. Much like in the if-let with multiple clauses, I could imagine a for-loop with multiple clauses:<br>
<br>
var cards: [(Suit,Rank)] = []<br>
for x in suits, y in ranks {<br>
  cards.append((x,y))<br>
}<br>
<br>
This would be the same as writing:<br>
<br>
var cards: [(Suit,Rank)] = []<br>
for x in suits {<br>
  for y in ranks {<br>
    cards.append((x,y))}<br>
  }<br>
}<br>
<br>
You could also do something like:<br>
<br>
for x in input1, y in (x..&lt;end) {<br>
   // Do something with (x,y)<br>
}<br>
<br>
In fact, once we would have that, we could combine both if-let and for, and make it more general, to end up with something like Haskell’s do-notation or C#’s LINQ. But that might be taking it too far...<br>
<br>
Chris<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>
</blockquote></div><br></div>