<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="">The problem I’m trying to solve is if I have<div class=""><br class=""></div><div class="">class LineSegmentObject {</div><div class="">...</div><div class="">}</div><div class="">class Wall :&nbsp;LineSegmentObject&nbsp;{</div><div class="">...</div><div class="">}</div><div class="">class Ray :&nbsp;LineSegmentObject&nbsp;{</div><div class="">…</div><div class="">}</div><div class=""><br class=""></div><div class="">And then in my code if I have</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal;" class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">let</span> wallsInBounds: <span style="font-variant-ligatures: no-common-ligatures; color: #703daa" class="">Set</span>&lt;<span style="font-variant-ligatures: no-common-ligatures; color: #4f8187" class="">Wall</span>&gt; = …</div></div><div style="margin: 0px; line-height: normal;" class=""><div style="margin: 0px; line-height: normal;" class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">let</span> raysOffWalls:&nbsp;<span style="font-variant-ligatures: no-common-ligatures; color: #703daa" class="">Set</span>&lt;<span style="font-variant-ligatures: no-common-ligatures; color: #4f8187" class="">Ray</span>&gt; = ...</div><div class=""><br class=""></div></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""></blockquote>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(187, 44, 162);" class="">let</span> unionOfAllTestedLineSegmentObjects = wallsInBounds.union(raysOffWalls)<br class=""><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><br class=""></div></blockquote>it fails to compile. Instead I have to do the very ugly<div class=""><br class=""></div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(187, 44, 162);" class="">var</span>&nbsp;unionOfAllTestedLineSegmentObjects:&nbsp;<span style="color: rgb(112, 61, 170);" class="">Set</span>&lt;<span style="color: rgb(79, 129, 135);" class="">LineSegmentObject&gt;</span>&nbsp;= (raysOffWalls&nbsp;<span style="color: rgb(187, 44, 162);" class="">as</span> <span style="color: rgb(112, 61, 170);" class="">Set</span>&lt;<span style="color: rgb(79, 129, 135);" class="">LineSegmentObject</span>&gt;).union(wallsInBounds&nbsp;<span style="color: rgb(187, 44, 162);" class="">as</span> <span style="color: rgb(112, 61, 170);" class="">Set</span>&lt;<span style="color: rgb(79, 129, 135);" class="">LineSegmentObject</span>&gt;)</div><div class=""><br class=""></div><div class="">As an aside, this also fails, surprisingly to me:</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal;" class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">var</span> unionOfAllTestedLineSegmentObjects = <span style="font-variant-ligatures: no-common-ligatures; color: #703daa" class="">Set</span>&lt;<span style="font-variant-ligatures: no-common-ligatures; color: #4f8187" class="">LineSegmentObject</span>&gt;()</div><div style="margin: 0px; line-height: normal;" class="">&nbsp; &nbsp; &nbsp; &nbsp; unionOfAllTestedLineSegmentObjects.unionInPlace(wallsInBounds)</div></div><div class=""><br class=""></div><div class="">—</div><div class=""><br class=""></div><div class="">So, what if we had an operator called, say, “commonType” that could take two types and return the closest type the both have in common?</div><div class=""><br class=""></div><div class="">Then the union operator for Set (and similar operators in Array and Dictionary) could look something like:</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal; color: rgb(112, 61, 170);" class=""><span style="color: rgb(0, 0, 0);" class="">&nbsp; &nbsp;&nbsp;</span><span style="color: rgb(187, 44, 162);" class="">public</span><span style="color: rgb(0, 0, 0);" class="">&nbsp;</span><span style="color: rgb(187, 44, 162);" class="">func</span><span style="color: rgb(0, 0, 0);" class="">&nbsp;union&lt;S :&nbsp;</span>SequenceType<span style="color: rgb(0, 0, 0);" class="">&gt;(sequence:&nbsp;</span>S<span style="color: rgb(0, 0, 0);" class="">) -&gt;&nbsp;</span>Set<span style="color: rgb(0, 0, 0);" class="">&lt;commonType(</span>Element, S.Generator.Element)<span style="color: rgb(0, 0, 0);" class="">&gt;</span></div></div><div class=""><span style="color: rgb(0, 0, 0);" class=""><br class=""></span></div><div class="">instead of:</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal; color: rgb(112, 61, 170);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">&nbsp; &nbsp;&nbsp;</span><span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">public</span><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""> </span><span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">func</span><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""> union&lt;S : </span>SequenceType<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""> </span><span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">where</span><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""> </span>S<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">.</span>Generator<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">.</span>Element<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""> == </span>Element<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">&gt;(sequence: </span>S<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">) -&gt; </span>Set<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">&lt;</span>Element<span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">&gt;</span></div></div><div class=""><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""><br class=""></span></div><div class="">[sorry if I got the syntax of defining a generic wrong up there, I’m still new to this)</div><div class=""><br class=""></div><div class="">So we’d automatically get an Set of LineSegments if we union a Set of Rays with a Set of Walls, which is what I’d expect.</div><div class=""><br class=""></div><div class="">—</div><div class=""><br class=""></div><div class="">If this type of thing doesn’t seem strict enough for you, then it could also just be a separate function, like “heterogenousUnion()” instead of “union()”.</div><div class=""><br class=""></div><div class="">Also, I believe this could make it a LOT easier to build heterogenous Dictionaries in code, which I actually can’t do at all in the current Swift. (Eg, creating dictionaries with arbitrary types of keys and values that you might feed to, say, SCNTechnique.) And it’d make dealing with mixed Arrays easier in a similar way.</div><div class=""><br class=""></div><div class="">--</div><div class=""><br class=""></div><div class="">On a scale from “Lattner" to “Lohan,” how bad an idea is this?</div><div class=""><br class=""></div><div class="">-Wil</div></body></html>