<div style="white-space:pre-wrap">Comparable makes semantic guarantees about how values of conforming types might be ordered. You don&#39;t need `min` or `max` for that to be useful, since it&#39;s trivial to implement using comparison operators.<br><br>Basic numeric types require compiler magic and thus belong in the standard library. Likewise, dictionaries have special syntactic sugar and have uses for types that can guarantee comparable semantics. A decimal type, though, can be implemented outside the standard library and probably would belong in a math library. Likewise mathematical constants such as e. I think min and max fall into the latter category.<br></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Aug 31, 2016 at 8:10 AM Karl &lt;<a href="mailto:razielim@gmail.com" target="_blank">razielim@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
&gt; On 30 Aug 2016, at 10:18, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; As an additive proposal, I don&#39;t think this would be in scope for the current phase of Swift 4.<br>
&gt;<br>
&gt; Looking forward, though, I&#39;m not sure this belongs in the standard library. In general, my understanding is that Swift&#39;s standard library is deliberately small, and that the criteria for additions are that it&#39;s widely used *and* also non-trivial for the user to write correctly. I&#39;ve had to use clamping, obviously, but it&#39;s a trivial one-liner that is hard to write incorrectly. If anything, I&#39;d be in favor of removing max and min into a future math library outside the standard library.<br>
<br>
min &amp; max (and clamping) are hardly “math” operations. They operate on Comparables, so you can apply them to more abstract things than just numbers.<br>
<br>
Otherwise, you might as well put Comparable and all standard numeric types like Int and Float in a math library, too.</blockquote></div>