Re: [swift-evolution] gyb template for ZipSequence

2016-11-10 Thread Ben Cohen via swift-evolution
It might be worth noting that, in the meantime, you can nest zips as a workaround without having to define zip for n-tuples: let integers = [1, 2, 3, 4, 5] let strings = ["a", "b", "c", "d", "e"] let doubles = [1.0, 2.0, 3.0, 4.0, 5.0] for (integer, (string, double)) in zip(integers, zip(strings

Re: [swift-evolution] gyb template for ZipSequence

2016-11-09 Thread Dave Abrahams via swift-evolution
on Wed Nov 09 2016, Alexander Momchilov wrote: > This stack overflow question > asks about using zip > with more than 3 sequences. I referred the OP to the generics > manifesto >

[swift-evolution] gyb template for ZipSequence

2016-11-09 Thread Alexander Momchilov via swift-evolution
This stack overflow question asks about using zip with more than 3 sequences. I referred the OP to the generics manifesto , which describes the (current) lack of