<div dir="ltr">It&#39;s been pointed out before that Optional being an enum type is treated like an implementation detail. Currently, it is possible to teach the concept of Optional without introducing enum types or generics. How would you do so after elimination of nil?<div class="gmail_extra"><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jun 8, 2016 at 3:41 PM, Антон Жилин <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">(No joking)<div><div>Points:<div><br></div><div>1. When nil was added to the language, we could not infer enumeration type:</div><div>if x != Optional.none { ... }</div><div><br></div><div>Now it looks like this:</div><div>if x != .none { ... }</div><div><br></div><div>If at this point we had a proposal to add nil as a replacement for .none, would we accept it?</div><div><br></div><div>2. nil is very generic, it only approximately allows to express the intentions.</div><div>In case of Optional, .none is clearer. In case of JSON processing, .null is clearer. In case of a semantically nullable struct, NilLiteralConvertible usually goes to default constructor.</div><div><br></div><div>3. Too many &quot;empty&quot; things: .none, nil; NSNull, Void, NoReturn types.</div><div><br></div><div>4. There should be a single consistent terminology: no value in Swift equals none.</div><div><br></div><div>- Anton</div></div></div></div>
<br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div></div>