<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 Sep 5, 2017, at 5:19 PM, Jordan Rose via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</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="">I've taken everyone's feedback into consideration and written this up as a proposal:&nbsp;<a href="https://github.com/jrose-apple/swift-evolution/blob/non-exhaustive-enums/proposals/nnnn-non-exhaustive-enums.md" class="">https://github.com/jrose-apple/swift-evolution/blob/non-exhaustive-enums/proposals/nnnn-non-exhaustive-enums.md</a>. The next step is working on an implementation, but if people have further pre-review comments I'd be happy to hear them.</div></div></div></blockquote><br class=""></div><div>Hi Jordan,</div><div><br class=""></div><div>I apologize in advance that I haven’t followed the back and forth on this thread, so I’m sorry if these thoughts are duplicative:</div><div><br class=""></div><div>I really would prefer to avoid introducing the notion of&nbsp;exhaustive/nonexhaustive enums into Swift, and would much prefer that such a thing be limited to C (which can’t express this concept already).</div><div><br class=""></div><div>We’ve talked about enums many times across years, and it seems like the appropriate model follows the generally understood resilience model. &nbsp;Specifically, there should be three different kinds of enums, and the kind should affect users outside their module in different ways:</div><div><br class=""></div><div>1. private/fileprivate/internal enum: cases can be added freely. &nbsp;All clients are in the same module, so the enum is implicitly fragile, and all switches within the current module may therefore be exhaustive.</div><div><br class=""></div><div>2. public enum (i.e., one that isn’t marked fragile): cases may be added freely. &nbsp;Within the module that defines the enum, switches may be exhaustive. &nbsp;However, because the enum is public and non-fragile, clients outside the current module must be prepared for the enum to add additional cases in future revisions of the API, and therefore they cannot exhaustively match the cases of the enum.</div><div><br class=""></div><div>3. fragile public enum: cases may not be added, because that would break the fragility guarantee. &nbsp;As such, clients within or outside of hte current module may exhaustively match against the enum.</div><div><br class=""></div><div><br class=""></div><div>This approach gives a very natural user model: app developers don’t have to care about enum resilience until they mark an enum as public, and even then they only have to care about it when/if they mark an enum as public. &nbsp;This also builds on the notion of fragility - something we need for other nominal types like structs and classes - so it doesn’t introduce new language complexity. &nbsp;Also such an approach is entirely source compatible with Swift 3/4, which require defaults (this isn’t an accident, it follows from the anticipated design).</div><div><br class=""></div><div>This approach doesn’t address the problem of what to do with C though, because C doesn’t have a reasonable notion of “extensible” vs “nonextensible” enum. &nbsp;As such, we definitely do need an attribute (or something) to add to Clang. &nbsp;I think that your proposal for defaulting to “extensible” and using&nbsp;__attribute__((enum_extensibility(closed))) override this is perfectly sensible.</div><div><br class=""></div><div>-Chris</div><div><br class=""></div><div><br class=""></div><div><br class=""></div><br class=""></body></html>