<div dir="ltr">I&#39;d love to see a type like tuple&lt;(A,B,C),D&gt;, that is equivalent to (A,B,C,D).<div>Also you could have functions on the tuple:</div><div><br></div><div>for (A,B,C,D,E,F):</div><div><br></div><div>func prefix&lt;A,B,C,...&gt;() -&gt; (A,B,C)</div><div>func suffix&lt;...,D,E,F&gt;() -&gt; (D,E,F)<br></div><div><br></div><div>Then you may be able to do something like this:</div><div>func ==&lt;A:tuple&lt;&gt;, B: tuple&lt;&gt;, where A: Equatable, B:Equatable&gt;(lhs: tuple&lt;A,B&gt;, rhs: tuple&lt;A,B&gt;) {</div><div>    return ls.prefix() as A == rhs.prefix() as A &amp;&amp; lhs.suffix() as B == rhs.suffix() as B</div><div>}</div><div>extension tuple&lt;Equatable,Equatable&gt;: Equatable {}</div><div><br></div><div>The downside I can see for that is that it will match the same tuple n different ways. You can overcome this by only allowing tuple&lt;A,B&gt; to append a single element, but it&#39;s less useful. Alternatively it will always match the function with the most elements in the left-most argument, and cannot match against the empty tuple.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 8, 2015 at 11:18 AM, Dmitri Gribenko 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"><span class="">On Mon, Dec 7, 2015 at 4:17 PM, Brent Royal-Gordon<br>
&lt;<a href="mailto:brent@architechies.com">brent@architechies.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;      return zip([a1,b1,c1,d1,e1], [a2,b2,c2,d2,e2]).lazy.filter(==).first.flatMap(&lt;) ?? false<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Okay, so that wasn’t quite as easy as I thought when I started writing<br>
&gt;&gt;&gt;&gt; the email.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; That also allocates two intermediate arrays (the inputs to zip()).<br>
&gt;&gt;<br>
&gt;&gt; And relies on all variables having the same type.<br>
&gt;<br>
&gt; Both true. What actually happened was, when I looked at the tuple version, I thought “okay, that’s basically just zipping the two together and then running &lt; on each pair&quot;. In trying to write the email making that point, I discovered that this “easy” alternative is actually ridiculously complicated once you translate it from a vague notion to running code, and thought that was funny.<br>
<br>
</span>We have lexicographicalCompare(), so it is not that complicated after all.<br>
<span class="im HOEnZb"><br>
Dmitri<br>
<br>
--<br>
main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br>
(j){printf(&quot;%d\n&quot;,i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com">gribozavr@gmail.com</a>&gt;*/<br>
</span><div class="HOEnZb"><div class="h5">_______________________________________________<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>
</div></div></blockquote></div><br></div>