<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div></div><div>Discussions on different index handling should belong to another thread if there isn't one already.</div><div><br></div><div>Your proposed Set change covers at least the custom Hashable behavior.</div><div>What about Equatable? I think it could be expressed as behaviors.</div><div><br></div><div>- Maximilian</div><div><br>Am 19.02.2016 um 11:58 schrieb Andrew Bennett via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt;:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div>Good points Dimitri,</div><div><br></div><div>I only wrote this quickly, so please look for other issues too, I don't expect it to be complete by any means.</div><div><br></div><div>I think a way to get an element's hashValue should probably be exposed, similar to `<font face="monospace, monospace">collection.next(index)</font>` that I mentioned earlier. I think this is useful, but I don't think it's actually necessary. Equatable is sufficient to provide Set functionality, Hashable is just for performance</div><div><br></div><div>I'm not aware of any algorithms that can't be built on top of the existing set methods that would require the same hash value the element used for binning.<br></div><div><br></div><div>I was initially thinking that you could compare&nbsp;the Hashable to determine equality, but I agree that there is a potential for the closure to convert to a narrower type.</div><div><br></div><div>A much stronger solution would change the interface slightly to require Element to be `<font face="monospace, monospace">Equatable`</font>, and provide `<font face="monospace, monospace">Element -&gt; Int</font>` as the closure. It's slightly less flexibly, but I do agree that a narrowing makes Equatability of s1 == s2 ambiguous.<br></div><div><br></div><div><b>In summary</b>:</div><div><br></div><div><div style="font-size:13px"><div><span style="font-family:monospace,monospace;background-color:rgb(244,204,204)">- struct Set&lt;Element: Hashable&gt; {</span><br></div><div><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">- struct Set&lt;Element: Equatable&gt; {</span></div><div><span style="font-family:monospace,monospace">&nbsp; &nbsp; ...</span><br></div><font face="monospace, monospace" style="background-color:rgb(244,204,204)"><div><div style="font-family:arial,sans-serif;background-color:rgb(255,255,255)"><div><font face="monospace, monospace" style="background-color:rgb(244,204,204)">- &nbsp; public init() { ... }</font></div><div><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">+ &nbsp; public init(</font></span><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">hashValue</span><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">ForElement: Element -&gt; Int) {</font></span></div><div><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">&nbsp; &nbsp; &nbsp; ...&nbsp;</font></span></div><div><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">&nbsp; &nbsp; }</font></span></div></div><font face="monospace, monospace" style="background-color:rgb(255,255,255)"></font></div>- &nbsp; public init(minimumCapacity: Int) { ... }</font></div><div style="font-size:13px"><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">+ &nbsp; public init&lt;H: Hashable&gt;(minimumCapacity: Int,&nbsp;</font></span><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">hashValue</span><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">ForElement: Element -&gt; Int</span><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">) {</font></span></div><div style="font-size:13px"><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">&nbsp; &nbsp; &nbsp; ...&nbsp;</font></span></div><div style="font-size:13px"><span style="background-color:rgb(217,234,211)"><font face="monospace, monospace">&nbsp; &nbsp; }</font></span><font face="monospace, monospace" style="background-color:rgb(244,204,204)"><br></font></div><div style="font-size:13px"><div><span style="font-family:monospace,monospace">&nbsp; &nbsp; ... (same for other public initialisers)</span></div></div><div style="font-size:13px"><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">+ &nbsp; public func hashValueForElement(element: Element) -&gt; Int { ...&nbsp;</span><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">}</span></div><div style="font-size:13px"><span style="font-family:monospace,monospace">&nbsp; }</span><br></div><div style="font-size:13px"><div><br></div><div><div><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">+ extension Set where Element: Hashable {</span><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)"><br></span></div><div><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">+ &nbsp; public init() { ... }</span><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)"><br></span></div><div><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">+ &nbsp; public init(minimumCapacity: Int) { ... }</span><br></div><div><span style="font-family:monospace,monospace;background-color:rgb(217,234,211)">+ }</span></div></div></div></div><div><br></div><div>-</div><div>Andrew Bennett</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 19, 2016 at 7:14 PM, Dmitri Gribenko <span dir="ltr">&lt;<a href="mailto:gribozavr@gmail.com" target="_blank">gribozavr@gmail.com</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 Fri, Feb 19, 2016 at 2:06 AM, Andrew Bennett via swift-evolution<br>
&lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt; Wrapper Solution?<br>
&gt;<br>
&gt; I've had a go at a wrapper solution before and it seems to either need a<br>
&gt; unique type per sort, or a block stored per element (unstable).<br>
&gt;<br>
&gt; Similar overheads were discussed when an index needs to store a reference to<br>
&gt; the parent. There's some work to fix it that makes indices moveable, so<br>
&gt; instead of going index.successor() you use collection.next(index).<br>
&gt;<br>
&gt; <a href="https://github.com/apple/swift/blob/master/test/Prototypes/CollectionsMoveIndices.swift" rel="noreferrer" target="_blank">https://github.com/apple/swift/blob/master/test/Prototypes/CollectionsMoveIndices.swift</a><br>
&gt;<br>
&gt; Potential solution:<br>
&gt;<br>
&gt; The collection interfaces could change like this:<br>
&gt;<br>
&gt; - struct Set&lt;Element: Hashable&gt; {<br>
&gt; - struct Set&lt;Element&gt; {<br>
&gt;&nbsp; &nbsp; &nbsp;...<br>
&gt; -&nbsp; &nbsp;public init() { ... }<br>
&gt; +&nbsp; &nbsp;public init&lt;H: Hashable&gt;(elementHasher: Element -&gt; H) {<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp;...<br>
&gt;&nbsp; &nbsp; &nbsp;}<br>
<br>
</span>How do you compare such sets?&nbsp; That is, what does s1 == s2 mean, if<br>
the two sets are constructed with a hashing closure?&nbsp; We can't even<br>
compare closures to find that they are the same.<br>
<br>
Also, how would this affect algorithms on sets?&nbsp; When handling a set,<br>
you essentially wouldn't know the rules according to which it<br>
operates, unless we expose this mapping function.<br>
<div class="HOEnZb"><div class="h5"><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("%d\n",i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com">gribozavr@gmail.com</a>&gt;*/<br>
</div></div></blockquote></div><br></div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></body></html>