<div style="white-space:pre-wrap">Yes, definitely. I missed that one but it is pretty great.<br></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Feb 16, 2016 at 1:33 PM Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
on Tue Feb 16 2016, Craig Cruden &lt;ccruden-AT-novafore.com&gt; wrote:<br>
<br>
&gt; Richard’s suggestions is amount the better ones:<br>
&gt;<br>
&gt; Of the symdiff ones I think I would lean towards:<br>
&gt;<br>
&gt; let symmetricDifference =     a.unionMinusIntersection(b)     // (a ∪ b) \ (a ∩ b) == a △ b<br>
<br>
Yeah, you&#39;re right; those were great ideas.<br>
<br>
&gt; It is descriptive enough for those not familiar with the name “symmetricDifference”.<br>
&gt;<br>
&gt; The fact that he keeps mutable names completely separate is a plus.<br>
&gt;<br>
&gt;&gt; On 2016-02-17, at 2:16:24, Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; on Tue Feb 16 2016, Xiaodi Wu &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a> &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Not that I like it, but<br>
&gt;&gt;&gt; insertNonIntersectingRemoveIntersectingContentsOf(_:) would be the<br>
&gt;&gt;&gt; stylistically consistent way to convey the right sense.<br>
&gt;&gt;<br>
&gt;&gt; Did you see Ricardo Parada&#39;s suggestions?  I thought some of those were<br>
&gt;&gt; better.<br>
&gt;&gt;<br>
&gt;&gt;&gt; On Tue, Feb 16, 2016 at 10:22 AM Dave Abrahams via swift-evolution &lt;<br>
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; on Mon Feb 15 2016, Brent Royal-Gordon &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I think you&#39;ve ended up with the right approach, and I understand the<br>
&gt;&gt;&gt;&gt; need to move on, but...<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;    /// Returns the set of elements contained in `self` or in `other`,<br>
&gt;&gt;&gt;&gt; but not in both `self` and `other`.<br>
&gt;&gt;&gt;&gt;&gt;&gt;    /// EXISTING: exclusiveOr<br>
&gt;&gt;&gt;&gt;&gt;&gt;    @warn_unused_result<br>
&gt;&gt;&gt;&gt;&gt;&gt;    func invertingIntersection(other: Self) -&gt; Self<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;    /// Replaces `self` with a set containing all elements contained in<br>
&gt;&gt;&gt;&gt; either `self` or `other`, but not both.<br>
&gt;&gt;&gt;&gt;&gt;&gt;    /// EXISTING: exclusiveOrInPlace<br>
&gt;&gt;&gt;&gt;&gt;&gt;    mutating func invertIntersection(other: Self)<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I&#39;m not quite happy with these. I don&#39;t like that the mutating form of<br>
&gt;&gt;&gt;&gt;&gt; `intersection` is `intersect`, but the mutating form of<br>
&gt;&gt;&gt;&gt;&gt; `invertingIntersection` is `invertIntersection`—it seems like both<br>
&gt;&gt;&gt;&gt;&gt; methods should change the &quot;intersection&quot; part.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Have you considered going the opposite direction and combining the verb<br>
&gt;&gt;&gt;&gt; &quot;intersect&quot; with the adjective &quot;inverse&quot;?<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;    /// Returns the set of elements contained in `self` or in `other`,<br>
&gt;&gt;&gt;&gt; but not in both `self` and `other`.<br>
&gt;&gt;&gt;&gt;&gt;    /// EXISTING: exclusiveOr<br>
&gt;&gt;&gt;&gt;&gt;    @warn_unused_result<br>
&gt;&gt;&gt;&gt;&gt;    func inverseIntersection(other: Self) -&gt; Self<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;    /// Replaces `self` with a set containing all elements contained in<br>
&gt;&gt;&gt;&gt; either `self` or `other`, but not both.<br>
&gt;&gt;&gt;&gt;&gt;    /// EXISTING: exclusiveOrInPlace<br>
&gt;&gt;&gt;&gt;&gt;    mutating func inverseIntersect(other: Self)<br>
&gt;&gt;&gt;&gt;&gt;    // or perhaps even `inverselyIntersect` so it&#39;s an adverb<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I wouldn&#39;t be surprised if you did, because I could see you trying to<br>
&gt;&gt;&gt;&gt;&gt; dodge the adverb problem, but I thought it was worth asking.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; These names all have the wrong sense, including the ones that were<br>
&gt;&gt;&gt;&gt; decided upon.  “Inverting the intersection” doesn&#39;t imply that elements<br>
&gt;&gt;&gt;&gt; not in the intersection will be merged, which is what happens in a<br>
&gt;&gt;&gt;&gt; symmetric difference.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; -Dave<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt; swift-evolution mailing list<br>
&gt;&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt;&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; swift-evolution mailing list<br>
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; -Dave<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; swift-evolution mailing list<br>
&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a> &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;<br>
&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a> &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a>&gt;<br>
<br>
--<br>
-Dave<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>