<div dir="ltr">I&#39;d like to pitch it out to swift-evolution but I&#39;m not sure to fully understand the proposed solution of &quot;disabling implicit promotion from T to T?&quot;<div><br></div><div>Does it mean that the following code won&#39;t work anymore?</div><div>let a: Int? = nil</div><div>let b: Int = 25</div><div>a &lt; b // does not compile anymore</div><div><br></div><div>If so, I&#39;m not sure it fixed our main problem because the following would still work as currently:</div><div>let a: Int? = nil</div><div>let b: Int? = 25</div><div>a &lt; b // return true</div><div><br></div><div>Result is still counterintuitive and could lead to misuses if the above behavior is not specifically known by a developer.</div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-05-24 20:35 GMT+02:00 Chris Lattner <span dir="ltr">&lt;<a href="mailto:clattner@apple.com" target="_blank">clattner@apple.com</a>&gt;</span>:<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"><span class=""><br><div><blockquote type="cite"><div>On May 24, 2016, at 11:14 AM, Joe Pamer &lt;<a href="mailto:jpamer@apple.com" target="_blank">jpamer@apple.com</a>&gt; wrote:</div><br><div><div style="word-wrap:break-word"><div><blockquote type="cite" style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div><div style="word-wrap:break-word"><div><blockquote type="cite"><div><br>On May 24, 2016, at 9:35 AM, Jordan Rose via swift-dev &lt;<a href="mailto:swift-dev@swift.org" target="_blank">swift-dev@swift.org</a>&gt; wrote:</div><br><div><div style="word-wrap:break-word"><div>I wouldn’t phrase it this way. “nil” could just as easily been above all of the integers.</div><div><br></div><div>We added overloads for &lt; and friends that took optionals so that you could sort an array by passing &lt; and get something reasonable out without having to provide your own comparison function, but you’re not the first to find it counterintuitive. We could consider removing it (going through the <a href="https://github.com/apple/swift-evolution/blob/master/process.md" target="_blank">Swift Evolution Process</a>).</div></div></div></blockquote><div><br></div><div>One of the ideas that Joe Pamer has been discussing is whether the implicit promotion from T to T? should be disabled when in an operator context.  Doing so would fix problems like this, but making the code invalid.</div><div><br></div><div>Joe, is this something that you think will come up for discussion in the Swift 3 timeframe?</div></div></div></div></blockquote><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">Yes - I believe so. I’ve been collecting my notes on the topic, with the hopes of getting a pitch out to swift-evolution soon.</div></div></div></div></blockquote><br></div></span><div>Awesome, thanks!</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>-Chris</div></font></span></div></blockquote></div><br></div>