What&#39;s problem of overloading? We only have four methods to do so.<br><br>Dave Abrahams &lt;<a href="mailto:dabrahams@apple.com">dabrahams@apple.com</a>&gt; 於 2016年1月1日星期五 寫道:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>On Dec 31, 2015, at 4:14 AM, Tino Heth &lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;2th@gmx.de&#39;);" target="_blank">2th@gmx.de</a>&gt; wrote:</div><br><div><div style="word-wrap:break-word"><div><br><blockquote type="cite"><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><font face="Menlo">func byComparing&lt;T, U: Comparable&gt;(getComparisonKey: (T)-&gt;U) -&gt; (T, T) -&gt; Bool {</font></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><font face="Menlo">  return { getComparisonKey($0) &lt; getComparisonKey($1) }</font></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><font face="Menlo">}</font></div></div></blockquote></div>I&#39;ve written something similar to bring file URLs into the order of their creation dates.<div>It is a small extension for collection types, and its only downside will disappear as soon as properties are accessible via method calls (afair there is a proposal in the making).</div><div><br></div><div>It was quite a lot fiddling with generics, and I don&#39;t have the tiny piece of code on my own computer, but it works in a way that you can do</div><div>let sorted = array.sortUsingAccessor(ElementType.methodThatReturnsComparable)</div><div>Beside the problems with properties, I really liked that approach.</div></div></div></blockquote><div><br></div>This seems to be essentially the same design as Susan’s, and has the same problem: it requires a new overload for every algorithm that takes a comparison predicate.<br></div><br><div>
-Dave
</div>
<br></div></blockquote>