<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On Aug 10, 2017, at 13:00, David Hart &lt;<a href="mailto:david@hartbit.com" class="">david@hartbit.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="content-type" content="text/html; charset=utf-8" class=""><div dir="auto" class=""><br class=""><div class=""><br class="">On 10 Aug 2017, at 19:19, Jordan Rose &lt;<a href="mailto:jordan_rose@apple.com" class="">jordan_rose@apple.com</a>&gt; wrote:<br class=""><br class=""></div><blockquote type="cite" class=""><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><br class=""><div class=""><br class=""><blockquote type="cite" class=""><div class="">On Aug 9, 2017, at 22:46, David Hart &lt;<a href="mailto:david@hartbit.com" class="">david@hartbit.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On 10 Aug 2017, at 02:42, Jordan Rose &lt;<a href="mailto:jordan_rose@apple.com" class="">jordan_rose@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><div class="">:-) As you've all noted, there are some&nbsp;conflicting concerns for the default:</div><div class=""><br class=""></div><div class="">- Source compatibility: the existing behavior for an unannotated enum is "closed".</div><div class="">- Intuition: if you show someone an enum without an explicit annotation, they'll probably expect they can switch over it. (I'm going to say this is why Zach calls it a "sensible default".)</div><div class="">- Consistency: switches on an enum in the same module can always be exhaustive, so having it be different across modules is a bit annoying. (But 'public' already acts like this.)</div><div class=""><br class=""></div><div class="">vs.</div><div class=""><br class=""></div><div class="">- Library evolution: the default should promise less, so that you have the opportunity to change it.</div><div class="">- Flexibility: you can emulate an exhaustive switch with a non-exhaustive switch using fatalError, but not the other way around.</div><div class=""><br class=""></div><div class="">All of this is why I suggested it be an explicit annotation in either direction, but Matthew brought up the "keyword soup" problem—if you have to write (say) "public finite enum" and "public infinite enum", but would never write "private finite enum" or "private infinite enum", <i class="">something</i>&nbsp;is redundant here. Still, I'm uncomfortable with the default case being the one that constrains library authors, so at <i class="">least</i>&nbsp;for binary frameworks (those compiled "with resilience") I would want that to be explicit. That brings us to one more concern: how different should binary frameworks be from source frameworks?</div></div></div></blockquote><div class=""><br class=""></div><div class="">In terms of intuition and consistency, I think we should really try to learn from the simplicity of public/open:</div><div class=""><br class=""></div><div class="">* When <b class="">internal</b>, classes are sub-classable by default for <b class="">convenience</b>, but can be closed with the <b class="">final</b> keyword</div><div class="">* When <b class="">public</b>, classes are closed to sub-classing for <b class="">safety</b>, but can be opened up with the <b class="">open</b> keyword (which implies public).</div><div class=""><br class=""></div><div class="">If we try to mirror this behaviour (the keywords are just suggestions, not important):</div><div class=""><br class=""></div><div class="">* When <b class="">internal</b>, enums are exhaustive by default for <b class="">convenience</b>, but can be opened-up with the <b class="">partial</b> keyword</div><div class="">* When <b class="">public, </b>enums are non-exhaustive by default for <b class="">safety</b>, but can be made exhaustive with the&nbsp;<b class="">exhaustive</b>&nbsp;keyword (which implies public).</div></div></div></div></blockquote><br class=""></div><div class="">This is not a correct understanding of the internal/public distinction for classes, though. From inside a module, a public-but-not-open class is still subclassable, and similarly a public-but-not-"closed" enum will still be exhaustively switched. You don't have to worry about your <i class="">own</i>&nbsp;module changing out from under you.</div></div></blockquote><div class=""><br class=""></div><div class="">Correct. Thanks for the clarification! But you still agree with the argument, right? Convenience for same module enums (exhaustive by default), safety for clients of the module (not-exhaustive when public from outside the module), with the option to be explicit?</div></div></div></blockquote><div><br class=""></div><div>That's the "library evolution" criterion above, yes. But the behavior of enums inside the module doesn't need to affect what we do across modules.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class="">And what do you think of the idea of having the « exhaustiveness » modifier imply public, like open does?</div></div></div></blockquote><br class=""></div><div>I'm a little less sure about that. It does help with the keyword soup problem, but it's also not as obviously about access as "open" was, and "open" can also appear where other access modifiers can appear (on methods, properties, and subscripts).</div><div><br class=""></div><div>Jordan</div><br class=""></body></html>