<div dir="ltr">On Fri, Feb 17, 2017 at 3:46 PM, Charlie Monroe <span dir="ltr">&lt;<a href="mailto:charlie@charliemonroe.net" target="_blank">charlie@charliemonroe.net</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><br><div><span class="gmail-"><blockquote type="cite"><div>On Feb 17, 2017, at 8:21 PM, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="gmail-m_-7007619946158901677Apple-interchange-newline"><div><div dir="ltr" style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">On Fri, Feb 17, 2017 at 1:11 PM, Xiaodi Wu<span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><span dir="ltr">&lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt;</span><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>wrote<wbr>:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><span>On Fri, Feb 17, 2017 at 12:45 PM, Vladimir.S<span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><span dir="ltr">&lt;<a href="mailto:svabox@gmail.com" target="_blank">svabox@gmail.com</a>&gt;</span><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><wbr>wrote:<br></span><div class="gmail_extra"><div class="gmail_quote"><span><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-">On 17.02.2017 20:48, Xiaodi Wu wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">What you are really asking for is a way of flexibly designating a &quot;unit of<br>code&quot; within a module, for which the general solution is submodules. The<br>objection is that, instead of tackling that issue, these are suggestions to<br>invent ad-hoc units of code (scope + extensions only in the same file,<br>scope + extensions only in the same module, class + extensions only in the<br>same file + subclasses only in the same module), and it is possible to<br>invent arbitrary many of these.<br></blockquote><br></span>No, sorry, I don&#39;t agree with you.<br>Current situation forces us to generate huge source files or write each type in its own submodule/file. IMO it is very naturally to have a need to protect access to some details *even* in the same file(please find David Sweeris&#39;s answer in previous email in this thread. with current &#39;private&#39; he can *guarantee* that no code touches internal props even in the same file), also many of us need a way to share some details only for extensions/subtypes in other files in the same module/submodule even just to organize code as *one* need/want and to express intention about who should &quot;touch&quot; this code and get help from compiler when accidentally try to use protected method/prop.<br></blockquote><div><br></div></span><div>I reject the premise that it is a goal of the Swift compiler to protect you from yourself.</div></div></div></div></blockquote><div><br></div><div>I should clarify, it should certainly protect you from unintentional accidents that you make, where those are foreseeable, etc. But here we&#39;re talking about _you_ invoking functions that _you_ wrote, which is a pretty darn clear demonstration of intentionality. And so what I mean to say is that the Swift compiler, IMO, has no real business trying to protect your intentions from your other intentions.</div></div></div></div></div></blockquote><div><br></div></span><div><div>With all due respect (and I do respect you as a person with quite an insight), why does Swift then (by default) check for (U)Int overflows, against nil values, etc, etc. These are all things that are quite protecting you from yourself. In a perfect world, you code your stuff in a way where you don&#39;t need these checks as you&#39;d write code that would handle these scenarios. Oh wait, that&#39;s Objective-C...</div></div></div></div></blockquote><div><br></div><div>Overflow, nil values, etc., all go to Swift&#39;s promising of memory safety by default. They also reflect errors of omission: we unintentionally forget to handle these cases. Here, a function call is an _intentional_ act. Writing a function not meant to be called is an _intentional_ act. It is strange that you would demand the compiler to stand between two of your own intentional acts.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><div><div>In a similar sense, I believe the compiler/language should prevent you from accidently accessing members that are not designed to be accessed from out of certain scope.</div><div><br></div><div>It&#39;s not just to protect _you_ from invoking something not being meant to invoke, but others as well.</div></div></div></div></blockquote><div><br></div><div>Others that are part of the collective &quot;you&quot; working on the project, the group of people who have permissions to touch the source code.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><div><div>Documentation is perfect only in a perfect world. I can&#39;t count how many times I&#39;ve come to a project without a single line of comment, not to mention a comment indicating whether the member is meant to be called outside of the file, or if it&#39;s marked as internal due to current limitations in access control and it&#39;s simply because you needed to split the class amongst several files logic-wise to prevent a bloated single file.</div><div><br></div><div>Documentation is not the answer.</div></div></div></div></blockquote><div><br></div><div>If documentation is not the answer, then by that line of reasoning, neither is access control. An author who can&#39;t be bothered to document that something shouldn&#39;t be used won&#39;t be bothered to determine what an appropriate access modifier would be, either. My point is that additional access modifiers don&#39;t help you express yourself any more than documentation does. Put another way, the access modifiers you advocate for are simply an alternative spelling for a comment.</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><blockquote type="cite"><div><div><div class="gmail-h5"><div dir="ltr" style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>You can *guarantee* that nothing in the same file touches what it shouldn&#39;t touch *by your own eyes*; `private` makes it &quot;easier&quot; but it is by no means necessary. Indeed I argue that reading code should be the go-to way reason about the behavior of code, and that compiler help is justified only when such a method of reasoning is unusually hard or error-prone.</div><div><br></div><div>Likewise, you can express intention by documentation. Indeed I argue that reading the documentation should be the go-to way for a reader to learn how to use unfamiliar code. Since a user will consult the documentation if he or she is wondering, &quot;how or when should I use this method?&quot;, it is perfectly sufficient and elegant to put a sentence in the documentation that says, &quot;actually, you should never use this method.&quot; It is self-evident why one might _want_ compiler help, but it is unclear to me why one _needs_ compiler help for this: after all, if you call an internal method that doesn&#39;t behave as intended, you can read the source code to find out exactly why--you can even change it!</div><span><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Someone, who want just internal/public can use only them in own code, no problems. But many feels that they need a more detailed access levels to structure their code, they find current situation not comfortable.<br></blockquote><div><br></div></span><div>As I said, there are arbitrarily many ways to structure your code. If you insist that the compiler should help you to control, perfectly, exactly what lines of code can call what other lines of code, and that the way to spell this desire is through access levels, then you will need many more access levels. My point is that, taken to its logical end, you would need infinitely many access levels. Although it would be unnecessary for the language to active prohibit certain styles of organizing code, I believe very strongly it is a non-goal of Swift to actively support, by the addition of new features, all imaginable styles of organizing code.</div><div><div class="gmail-m_-7007619946158901677h5"><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><br><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>There is, objectively, an actual minimum number of access modifiers, which<br>is two. Those two are: visible only inside the unit of code, or visible<br>both inside and outside the unit of code. In Swift, those are spelled<br>internal and public. Everything else here is really talking about better or<br>more flexible ways of defining a unit of code.<br><br><br>On Fri, Feb 17, 2017 at 06:21 Vladimir.S via swift-evolution<br></span><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;&gt; wrote:<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>On 17.02.2017 11:29, Slava Pestov via swift-evolution wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; On Feb 17, 2017, at 12:09 AM, Charlie Monroe via swift-evolution<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;&gt;<div><div class="gmail-m_-7007619946158901677m_1994047588422378678gmail-h5"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; True, what I meant was a wider feedback - let&#39;s face it, there are many<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; more Swift developers now than 2 years ago.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; My objection is not to the documentation itself, but to the fact<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>that I&#39;m<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; unnecessarily exposing an internal implementation detail to the rest of<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; the module. Being able to hide it from the rest IMHO leads to better<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; though-through API that is indeed meant to be exposed; whereas exposing<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; internal details leads to allowing various quick hacks instead. We know<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; these quick hacks very well from the ObjC world by accessing private<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; parts of the object via duck typing or setting values via KVO.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; At least this is my experience with which the less implementation<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>details<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; are exposed to the outer world, the better.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; I think the fundamental disagreement we’re seeing in this thread is the<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; meaning of “outer world”; to some, it means “users of your module”. To<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; others, it also means “other developers on my team who are working on<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>other<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; files in the module”.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; Personally I feel enforced encapsulation of implementation detail to the<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; latter group is less important than the former, and can be handled by<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; convention. Whereas other users of your module definitely benefit from<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; access control and being able to consume a clearly-defined interface.<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>I assume we are discussing access modifiers mainly for the former group,<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>i.e. when we are &quot;inside&quot; the module (even when this module is written by<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>the same one person, and especially when it is written by the group).<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&quot;handled by convention&quot; - are we talking about something like declaring<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>props and methods as __privateprop , m_privateprop etc and write comments<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>to mark that they should not be used outside of some scope? Is it really<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>Swifty and acceptable for the modern language? Will this help to prevent<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>some mistakes with incorrect access? Is it better than simple and clean<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>schema for access modifiers and compiler&#39;s help?  I don&#39;t understand this.<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>IMO, access modifiers is very known and handy abstraction to distinct<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>levels of access and to structure code many developers knows about and use<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>in other languages.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>At the end, if one wants to keep all internal - no problems!, you can do<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>this right now, just don&#39;t use fileprivate/private/etc.<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>Yes, I agree we need a simple and clean schema, not over-complicated, we<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>need nice&amp;clean keywords, we need a required minimum of access modifiers,<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>not more, and I do believe currently we don&#39;t have this minimum.<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>Was already suggested, trying again(I do believe this could be a<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>compromised solution to suit needs of the main part of developers):<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>* (as currently) public/open -&gt; outside of the module<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>* (as currently) internal -&gt; inside module<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>* private -&gt; inside file (instead of fileprivate)<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>* protected(or *other* keyword) -&gt; inside file + subtype&amp;extensions in the<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>*same module*<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>What objections could be made for this?<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>Thank you.<br><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; Slava<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; On Feb 17, 2017, at 8:54 AM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt;<br></div></div><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-">   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; &lt;mailto:<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt;&gt;&gt; wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; That blog post starts out right away to say that it&#39;s a response to<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; community feedback. Moreover, the scenario you describe was just as<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; possible in 2014 as it is now. Finally, then as now, it&#39;s unclear why<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; you consider documentation to be &quot;not pretty.&quot; After all, your reader<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; would need to consult the documentation before using a variable anyway.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; On Fri, Feb 17, 2017 at 01:04 Charlie Monroe via swift-evolution<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;&gt;<span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     I&#39;m aware of this, but that&#39;s fairly a long time ago - before Swift<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     was open source and had community feedback and before Swift was<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>used<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     widely among developers.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     To me, real-world use of the language has shown some flaws of<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     missing a protected access control, mainly having to decide between<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     having a variable internal or cramming all of the class extension<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     into one file, making it a 3KLOC mess. Either solution is not<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>pretty<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     - now I have it split among several files with an internal variable<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     commented as &quot;Do not use, for private use of this class only.&quot;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;     On Feb 17, 2017, at 7:47 AM, Jose Cheyo Jimenez<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;     &lt;<a href="mailto:cheyo@masters3d.com" target="_blank">cheyo@masters3d.com</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:cheyo@masters3d.com" target="_blank"><wbr>cheyo@masters3d.com</a>&gt;<br></span><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-">   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:cheyo@masters3d.com" target="_blank">cheyo@masters3d.com</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><wbr>&lt;mailto:<a href="mailto:cheyo@masters3d.com" target="_blank">cheyo@masters3d.com</a>&gt;&gt;&gt; wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;     <a href="https://developer.apple.com/swift/blog/?id=11" rel="noreferrer" target="_blank">https://developer.apple.com/s<wbr>wift/blog/?id=11</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;     On Feb 16, 2017, at 10:05 PM, Charlie Monroe via swift-evolution<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;     &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;&gt;<span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     How about removing fileprivate, getting Swift 2 meaning of<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>private<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     (as most people here now suggest) and add additional @protected<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     annotation for those who want a more fine-grained solution:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     @protected private - members accessable only from the<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     class/struct/enum/... and their extensions within the file<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     @protected internal - again, but you can access it even from<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     extensions and subclasses outside of the file within the entire<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     module.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     @protected public/open - the same as above, but outside the<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>modules.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     To me, this way most people here will be happy:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     - those wishing the access control gets simplified - it in fact<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     does, you don&#39;t need to use @protected, if you don&#39;t want<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>to/need to.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     - those who need a fine-grained solution, here it is.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     On Feb 17, 2017, at 3:49 AM, Matthew Johnson via swift-evolution<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.<wbr>org</a><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt;&gt;&gt; wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     Sent from my iPad<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     On Feb 16, 2017, at 8:36 PM, David Sweeris via swift-evolution<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.<wbr>org</a><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     On Feb 16, 2017, at 14:34, Slava Pestov via swift-evolution<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.<wbr>org</a><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     wrote:<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     While we’re bikeshedding, I’m going to add my two cents. Hold<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     on to your hat because this might be controversial here.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     I think both ‘private’ and ‘fileprivate’ are unnecessary<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     complications that only serve to clutter the language.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     It would make a lot more sense to just have internal and<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>public<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     only. No private, no fileprivate, no lineprivate, no<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>protected.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;     It’s all silly.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     Eh, I&#39;ve used `private` to keep myself honest in terms of going<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     through some book-keeping functions instead of directly<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     accessing a property.<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     This is exactly the kind of thing I like it for and why I<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>hope we<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     might be able to keep scoped access even if it gets a new name<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     that ends up as awkward as fileprivate (allowing private to<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     revert to the Swift 2 meaning).<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     - Dave Sweeris<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     _____________________________<wbr>__________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt; &lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.<wbr>org</a><span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;&gt;     <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailm<wbr>an/listinfo/swift-evolution</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     _____________________________<wbr>__________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;<span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;&gt;     <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailm<wbr>an/listinfo/swift-evolution</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     _____________________________<wbr>__________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;<span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;&gt;&gt;     <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailm<wbr>an/listinfo/swift-evolution</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     _____________________________<wbr>__________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;<span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;     <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailm<wbr>an/listinfo/swift-evolution</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; ______________________________<wbr>_________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt; swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"><wbr> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a>&gt;<br></span>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@<wbr>swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-<wbr>evolution@swift.org</a>&gt;&gt;<span class="gmail-m_-7007619946158901677m_1994047588422378678gmail-"><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;&gt;<span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; ______________________________<wbr>_________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt; swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><wbr>&lt;mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.<wbr>org</a>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>____________________________<wbr>___________________<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>swift-evolution mailing list<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><span class="gmail-m_-7007619946158901677Apple-converted-space"> </span>&lt;<wbr>mailto:<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.o<wbr>rg</a>&gt;<br>   <span class="gmail-m_-7007619946158901677Apple-converted-space"> </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br><br></span></blockquote></blockquote></div></div></div><br></div></div></blockquote></div><br></div></div><span style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline">______________________________<wbr>_________________</span><br style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline">swift-evolution mailing list</span><br style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline"><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a></span><br style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"></div></div><span style="font-family:helvetica;font-size:10px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a></span></div></blockquote></div><br></div></blockquote></div><br></div></div>