<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div style="font-family:Arial;">On Wed, Aug 9, 2017, at 08:49 PM, Jordan Rose via swift-evolution wrote:<br></div>
<blockquote type="cite"><div>Ah, I forgot to mention: per my response to Charlie, the vast majority of enums in ObjC Foundation (80-90%) seem to be "open". I should have put that in the "open" side of the list. I'm not convinced that "APIs are designed differently in Swift" to the extent where you'd actually expect most enums to be closed; rather, I suspect most Swift API designers haven't been thinking too hard about exhaustive switches, and certainly not about binary compatibility, which becomes relevant at least for Apple once Swift libraries become part of the SDK.<br></div>
</blockquote><div style="font-family:Arial;"><br></div>
<div style="font-family:Arial;">Let me expound a bit. I was erroneously including string enums in my supposition that APIs are designed differently, but overall I still stand behind it.<br></div>
<div style="font-family:Arial;"><br></div>
<div style="font-family:Arial;">Foundation is designed for paper over lots of different computing concepts  and underlying libraries with similar-ish APIs — in a good way! From the eyes of an API consumer, configuring something like a formatter to behave how they want is basically a write-only proposition. This makes simple enum cases a great design choice for hiding  swaths of different underlying implementations  (ex:&nbsp;NSDateFormatterShortStyle having a different meaning per-locale.)<br></div>
<div style="font-family:Arial;"><div style="font-family:Arial;"><br></div>
</div>
<div style="font-family:Arial;">Say we split up Foundation's enums  roughly into categories. You have your policies (NSURLCacheStoragePolicy, NSDateFormatterStyle), states/answers (NSURLSessionTaskState, NSQualityOfService), and, well, lists (NSSearchPathDirectory, NSStringEncoding). Given those, I’d say&nbsp;protocols, generics, and zero-cost abstractions are frequently a better choice (but not always). For  instance, IMHO a closed protocol better models commonly-used styles.<br></div>
<div style="font-family:Arial;"><br></div>
<div style="font-family:Arial;">I know you ask  to only consider open/closed enums in isolation to make it most likely to succeed, but there’s the&nbsp;frequent complaint that Swift has many ways to accomplish the same thing; I think resilience will land best with the community if it has a few really solid throughlines with the rest of the language, open/closed I hope being among them.<br></div>
<div style="font-family:Arial;"><br></div>
<div style="font-family:Arial;"><span class="font" style="font-family:arial, sans-serif, sans-serif">Sincerely,</span><br></div>
<div id="sig20055365"><div class="signature"><div class="signature"><span class="font" style="font-family:arial, sans-serif, sans-serif">&nbsp; Zachary Waldowski</span><br></div>
<div class="signature"><span class="font" style="font-family:arial, sans-serif, sans-serif">&nbsp;&nbsp;</span><a href="mailto:zach@waldowski.me"><span class="font" style="font-family:arial, sans-serif, sans-serif">zach@waldowski.me</span></a><br></div>
<div class="signature"><div style="font-family:Arial;"><br></div>
</div>
</div>
</div>
<div style="font-family:Arial;"><br></div>
</body>
</html>