<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=""><br class=""><div><blockquote type="cite" class=""><div class="">On 24 Apr 2016, at 17:41, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" class="">xiaodi.wu@gmail.com</a>&gt; wrote:</div><div class=""><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 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="gmail_extra"><div class="gmail_quote"><div class=""><br class=""></div><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 style="word-wrap: break-word;" class=""><div class="">Regarding how this affects sorting methods though, some people (myself included) like the simplicity of being able to do the following:<br class=""></div><div class=""><br class=""></div><div class=""><font face="Monaco" class=""><span style="white-space: pre-wrap;" class="">        </span>myArray.sort(&gt;)<span style="white-space: pre-wrap;" class="">        </span>// If array is of Comparable elements, just throw in the operator</font></div><div class=""><br class=""></div><div class="">While for less-than you could just pass in the new operator instead, is there an easy way to flip the operator to achieve a similar result?</div></div></blockquote><div class=""><br class=""></div><div class="">What's wrong with reverse()?</div></div></div></div></div></blockquote><div><br class=""></div><div>Nothing in that specific case I suppose, but in similar cases that don’t return something that .reverse() can be used with it will be a bit more awkward to work with; in-place sorting would perhaps be a better example, as you can’t just expect everything the array is passed on to to call .reverse(), as they may not know what the order is supposed to be. This is where the full range of current comparison operators are useful. I considered that we could have two ordering operators such as &lt;=&lt; and &gt;=&gt; for ascending and descending respectively as drop-in replacements for &lt; and &gt;, but this wouldn’t help cases where &lt;= and &gt;= are used and I doubt we want yet more operators.</div><div><br class=""></div><div>The enum could be given a raw type of Int with values of .Below (-1), .Same (0) and .Above (1), which would allow me to do: .sortInPlace({ $0 &lt;=&gt; $1 &gt; 0 })</div><div>Though that feels a bit weird, like I should be testing against the actual enum cases, but doing so gets messy very quickly. Java uses an integer for sorting order, but then iirc their enum type came later so they might have used it if they’d had it, but their integer value has the added bonus that it can also optionally represent an estimate of how far two elements are displaced from one another.</div><div><br class=""></div><div>On which note actually, should the .Below and .After cases include a stored value to give an optional estimate of displacement? This needn’t actually be used, and for some types won’t be accurate enough to be useful (in which case it should just be 1), but in some cases it can be useful to provide and use when documented properly.</div></div></body></html>