<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Yes, it would, but you also need the <font face="PT Mono" class="">ZipSequence</font> to be able to support that, which would actually need variadic generics. Which aren't supported :)<div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On 7 Dec 2015, at 13:12, Vinicius Vendramini via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""></div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">I wouldn't really know how to do this, but a better approach than implementing zip2 through zip10 might be making it a variadic function, no?</div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br class="">On Dec 6, 2015, at 6:49 PM, Donnacha Oisín Kidney via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""><br class=""></div><blockquote type="cite" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div class="">An implementation of this is actually pretty complicated, since you aren’t supposed to call a generator once it’s returned nil.<div class=""><br class=""></div><div class=""><div class="" style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;"><div class="" style="margin: 0px; line-height: normal;"><span class="" style="color: rgb(187, 44, 162);">public</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">struct</span><span class="Apple-converted-space">&nbsp;</span>NilPaddedZipGenerator&lt;G0: GeneratorType, G1: GeneratorType&gt; :<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">GeneratorType</span><span class="Apple-converted-space">&nbsp;</span>{</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class="">&nbsp;&nbsp;<br class="webkit-block-placeholder"></div><div class="" style="margin: 0px; line-height: normal;">&nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">private</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">var</span><span class="Apple-converted-space">&nbsp;</span>(g0, g1): (<span class="" style="color: rgb(112, 61, 170);">G0</span>?,<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">G1</span>?)</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class="">&nbsp;&nbsp;<br class="webkit-block-placeholder"></div><div class="" style="margin: 0px; line-height: normal;">&nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">public</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">mutating</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">func</span><span class="Apple-converted-space">&nbsp;</span>next() -&gt; (<span class="" style="color: rgb(112, 61, 170);">G0</span>.<span class="" style="color: rgb(112, 61, 170);">Element</span>?,<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">G1</span>.<span class="" style="color: rgb(112, 61, 170);">Element</span>?)? {</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">let</span><span class="Apple-converted-space">&nbsp;</span>(e0,e1) = (<span class="" style="color: rgb(79, 129, 135);">g0</span>?.<span class="" style="color: rgb(61, 29, 129);">next</span>(),<span class="" style="color: rgb(79, 129, 135);">g1</span>?.<span class="" style="color: rgb(61, 29, 129);">next</span>())</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">switch</span><span class="Apple-converted-space">&nbsp;</span>(e0,e1) {</div><div class="" style="margin: 0px; line-height: normal; color: rgb(187, 44, 162);"><span class="" style="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span></span>case<span class="" style=""><span class="Apple-converted-space">&nbsp;</span>(</span>nil<span class="" style="">,</span>nil<span class="" style="">):<span class="Apple-converted-space">&nbsp;</span></span>return<span class="" style=""><span class="Apple-converted-space">&nbsp;</span></span>nil</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">case</span><span class="Apple-converted-space">&nbsp;</span>(&nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">_</span>,<span class="" style="color: rgb(187, 44, 162);">nil</span>):<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(79, 129, 135);">g1</span><span class="Apple-converted-space">&nbsp;</span>=<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">nil</span></div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">case</span><span class="Apple-converted-space">&nbsp;</span>(<span class="" style="color: rgb(187, 44, 162);">nil</span>,&nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">_</span>):<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(79, 129, 135);">g0</span><span class="Apple-converted-space">&nbsp;</span>=<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">nil</span></div><div class="" style="margin: 0px; line-height: normal; color: rgb(187, 44, 162);"><span class="" style="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span></span>default<span class="" style="">:<span class="Apple-converted-space">&nbsp;</span></span>break</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; }</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">return</span><span class="Apple-converted-space">&nbsp;</span>(e0,e1)</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; }</div><div class="" style="margin: 0px; line-height: normal;">}</div><div class="" style="margin: 0px; line-height: normal; color: rgb(0, 132, 0);"><br class=""></div><div class="" style="margin: 0px; line-height: normal;"><span class="" style="color: rgb(187, 44, 162);">public</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">struct</span><span class="Apple-converted-space">&nbsp;</span>NilPaddedZip&lt;S0: SequenceType, S1: SequenceType&gt; :<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">LazySequenceType</span><span class="Apple-converted-space">&nbsp;</span>{</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class="">&nbsp;&nbsp;<br class="webkit-block-placeholder"></div><div class="" style="margin: 0px; line-height: normal;">&nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">private</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">let</span><span class="Apple-converted-space">&nbsp;</span>(s0, s1): (<span class="" style="color: rgb(112, 61, 170);">S0</span>,<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">S1</span>)</div><div class="" style="margin: 0px; line-height: normal;">&nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">public</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">func</span><span class="Apple-converted-space">&nbsp;</span>generate() -&gt;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(79, 129, 135);">NilPaddedZipGenerator</span>&lt;<span class="" style="color: rgb(112, 61, 170);">S0</span>.<span class="" style="color: rgb(112, 61, 170);">Generator</span>,<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">S1</span>.<span class="" style="color: rgb(112, 61, 170);">Generator</span>&gt; {</div><div class="" style="margin: 0px; line-height: normal; color: rgb(79, 129, 135);"><span class="" style="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span></span><span class="" style="color: rgb(187, 44, 162);">return</span><span class="" style=""><span class="Apple-converted-space">&nbsp;</span></span>NilPaddedZipGenerator<span class="" style="">(g0:<span class="Apple-converted-space">&nbsp;</span></span>s0<span class="" style="">.</span><span class="" style="color: rgb(61, 29, 129);">generate</span><span class="" style="">(), g1:<span class="Apple-converted-space">&nbsp;</span></span>s1<span class="" style="">.</span><span class="" style="color: rgb(61, 29, 129);">generate</span><span class="" style="">())</span></div><div class="" style="margin: 0px; line-height: normal;">&nbsp; }</div><div class="" style="margin: 0px; line-height: normal;">}</div><div class="" style="margin: 0px; line-height: normal; min-height: 13px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal; color: rgb(187, 44, 162);">@warn_unused_result</div><div class="" style="margin: 0px; line-height: normal;"><span class="" style="color: rgb(187, 44, 162);">public</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">func</span><span class="Apple-converted-space">&nbsp;</span>zipWithPadding&lt;S0:<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">SequenceType</span>, S1:<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">SequenceType</span>&gt;(s0:<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">S0</span>,<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">_</span><span class="Apple-converted-space">&nbsp;</span>s1:<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(112, 61, 170);">S1</span>)</div><div class="" style="margin: 0px; line-height: normal; color: rgb(79, 129, 135);"><span class="" style="">&nbsp; -&gt;<span class="Apple-converted-space">&nbsp;</span></span>NilPaddedZip<span class="" style="">&lt;</span><span class="" style="color: rgb(112, 61, 170);">S0</span><span class="" style="">,<span class="Apple-converted-space">&nbsp;</span></span><span class="" style="color: rgb(112, 61, 170);">S1</span><span class="" style="">&gt; {</span></div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">return</span><span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(79, 129, 135);">NilPaddedZip</span>(s0: s0, s1: s1)</div><div class="" style="margin: 0px; line-height: normal;">}</div><div class="" style="margin: 0px; line-height: normal;"><br class=""></div></div><div class=""><blockquote type="cite" class=""><div class="">On 6 Dec 2015, at 23:44, Erica Sadun via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">Is there an implementation in the stdlib for (T?, T?) like this?</div><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><blockquote type="cite" class=""><div class="">On Dec 6, 2015, at 4:37 PM, Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com" class="">gribozavr@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote">On Sun, Dec 6, 2015 at 3:34 PM, Erica Sadun via swift-evolution<span class="Apple-converted-space">&nbsp;</span><span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span><span class="Apple-converted-space">&nbsp;</span>wrote:<br class=""><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div class="" style="word-wrap: break-word;"><div class="">It's pretty easy to build your own Zips. Not sure the language really needs this. For example, I recently built a zip that produces (T?, T?) which fills one of the two with nil until both lists are consumed:</div><div class=""><br class=""></div><div class=""><div class="" style="margin: 0px; font-size: 18px; line-height: normal; font-family: Menlo; color: rgb(112, 61, 170);"><div class="" style="margin: 0px; line-height: normal;"><span class="" style="color: rgb(187, 44, 162);">func</span><span class="Apple-converted-space">&nbsp;</span>longZip&lt;S0: SequenceType, S1: SequenceType&gt;(seq0: S0,<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(187, 44, 162);">_</span><span class="Apple-converted-space">&nbsp;</span>seq1: S1) -&gt;</div><div class="" style="margin: 0px; line-height: normal;"><span class="">&nbsp; &nbsp;<span class="Apple-converted-space">&nbsp;</span></span>AnyGenerator<span class="">&lt;(</span>S0<span class="">.</span>Generator<span class="">.</span>Element<span class="">?,<span class="Apple-converted-space">&nbsp;</span></span>S1<span class="">.</span>Generator<span class="">.</span>Element<span class="">?)&gt; {</span></div></div></div></div></blockquote><div class=""><br class=""></div><div class=""><br class=""></div><div class=""></div></div><div class="gmail_extra">Just wanted to point out that AnyGenerator has an inherent cost from the type erasure.&nbsp; The implementation in the standard library uses generics and is fully optimizable.</div><div class="gmail_extra"><br class=""></div><div class="gmail_extra">Dmitri</div><div class=""><br class=""></div>--<span class="Apple-converted-space">&nbsp;</span><br class=""><div class="gmail_signature">main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br class="">(j){printf("%d\n",i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com" target="_blank" class="">gribozavr@gmail.com</a>&gt;*/</div></div></div></div></blockquote></div><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><img src="https://u2002410.ct.sendgrid.net/wf/open?upn=Lo8TP3b1oIn3yQXUt9zA1UCQfR-2BMBCuqnubTuDg47-2B016z-2F8HeT95QRrJrhT2NAKJPocQhb3AofXv07OB3FXYsWIGA1k-2F2-2BJpLMg-2BZCmXGqx7mocuK-2Bx6ejN8qCnp0318VhhODd8A0pr6IljpDPqeCK1H7ySi-2F-2BK9hsKnh6SDq26CqzrlLyXAmjQHo05ocU2aXfkA8Wuzvc6m62fQ33wFHfCPvfb52iKbBv4scJdtq4-3D" alt="" width="1" height="1" border="0" class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; height: 1px !important; width: 1px !important; border-width: 0px !important; margin: 0px !important; padding: 0px !important;"><span class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;"><span class="Apple-converted-space">&nbsp;</span></span><span class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">_______________________________________________</span><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><span class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;">swift-evolution mailing list</span><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><a href="mailto:swift-evolution@swift.org" class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">swift-evolution@swift.org</a><br class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">https://lists.swift.org/mailman/listinfo/swift-evolution</a></div></blockquote></div><br class=""></div><img src="https://u2002410.ct.sendgrid.net/wf/open?upn=LFwSuj9FMv8p5lHRk78JpoTG6TdqPOb6ZXyNv3YIC3wkP1GFqisWBfrmPvls7mfmvwc-2B-2BGOz8EYhR68qPYmOSfZh-2BFOaX9btu2W82E2g9Odk8Rugzkg-2BQpq1-2FG2EfeCUHyV53ndGBLwnNmLAzW01Wqwj0TGRaUxda2AxuNgPNURU0F8UpmXFz7Qc-2F62u7tjFwZm8faXuvd9t-2By7gPLJ6QSNukIaZJh78POWnmYSpbv8-3D" alt="" width="1" height="1" border="0" style="height: 1px !important; width: 1px !important; border-width: 0px !important; margin: 0px !important; padding: 0px !important;" class=""></div></blockquote><blockquote type="cite" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div class=""><span class="">_______________________________________________</span><br class=""><span class="">swift-evolution mailing list</span><br class=""><span class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a></span><br class=""><span class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br class=""></div></blockquote><img src="https://u2002410.ct.sendgrid.net/wf/open?upn=UNDxqBUDZDpZmPmXfIKeZ1UxMq-2BwsURX5ulfpb2jFAZW2iAkwG-2BnwU0GJqr8UBuXco84gbGlYrCpl5-2BVJJKj6flVH-2BS-2BfJmdaVqZe89Oj2gFQgrr00PMKCvcKBiTVp99Q97FWU7PDjjhK44oXstkjeL8mT4GYoP9ZRcfFuQNumAS8thtyVDqGcSYueWiF-2FtbQGZN6sT1XocFUNoDCTAT2c-2BJiZt9KAPhG1z4wZlxc80-3D" alt="" width="1" height="1" border="0" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; height: 1px !important; width: 1px !important; border-width: 0px !important; margin: 0px !important; padding: 0px !important;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class=""><span class="Apple-converted-space">&nbsp;</span>_______________________________________________</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">swift-evolution mailing list</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="mailto:swift-evolution@swift.org" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">swift-evolution@swift.org</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a></div></blockquote></div><br class=""></div></body></html>