<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>Sounds good Ilya. &nbsp;I'll be happy to offer feedback and contribute to it. &nbsp;I just haven't had time to write it myself yet. &nbsp;Feel free to ping me privately if you would like to collaborate.<br><br>Sent from my iPad</div><div><br>On Dec 11, 2015, at 9:50 PM, Ilya &lt;<a href="mailto:ilya@harmonicsense.com">ilya@harmonicsense.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr">I really want this feature, so I'll start working on a formal proposal.<div><br></div><div>--</div><div>Ilya Belenkiy</div><div><br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 9, 2015 at 12:20 PM Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com">matthew@anandabits.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto"><div>Ilya,</div><div><br></div><div>I would be happy to write this up.&nbsp; It sounds like there is a possibility to have a good discussion and possibly even a formal review even if there is some initial reluctance to accept it.</div><div><br></div><div>I can't guarantee how soon I will get to it though.&nbsp; It may take me a week or two (maybe longer) as I have some other proposals already started and my life is pretty busy at the moment.&nbsp; If you want to see something sooner than that you should probably start a draft and I'll pitch in where I can with feedback or as a co-author.</div><div><br></div><div>Matthew<br><br>Sent from my iPad</div></div><div dir="auto"><div><br>On Dec 9, 2015, at 5:42 AM, Ilya &lt;<a href="mailto:ilya@harmonicsense.com" target="_blank">ilya@harmonicsense.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr"><span><span style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">Hi Jordan,</span><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px"><br></div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">Thank you, I understand your reasoning. The current model is simple to describe and implement. It’s a good solution for access control across modules. That being said, it doesn’t solve the problem of hiding implementation details at a smaller scale, which is also important. The suggestion to put each class (or part of the class) in a separate file works for large pieces of code but isn’t practical for smaller pieces. An analogy: putting each chapter of a book into a separate file makes sense but putting every paragraph in a separate file does not.</div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px"><br></div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">I think that Matthew had a great idea: add a scope based access control. Swift already has some support for it: local functions. I actually use it a lot and put functions into other functions to hide implementation details. It’s not possible to use it everywhere, but when it is possible, it’s great. If we could have a “local” access modifier that limited the entity only to the scope in which it’s defined, that would allow much less nesting, and it would make it possible to hide many more code.structures.</div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px"><br></div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">For me, hiding implementation details is a fundamental feature of the language / compiler. It is possible to get by without it with coding by convention, but it’s also possible to get by without a strong type system. Having a way to hide implementation details that is enforced by the language will help to have clearly defined interfaces and limit hacks and mistakes for misusing APIs that are meant to be private.</div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px"><br></div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">I appreciate what you said about an official proposal. I’ll ask Matthew again (since access by scope was his idea). If he is not up to it, I’ll submit a proposal myself. For me, this issue was one of the driving forces to join the mailing list.</div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px"><br></div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">—</div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px">Ilya Belenkiy</div></span><div dir="auto" style="word-wrap:break-word"><div><div style="direction:ltr"><blockquote type="cite"><div>On Dec 8, 2015, at 6:49 PM, Jordan Rose &lt;<a href="mailto:jordan_rose@apple.com" target="_blank">jordan_rose@apple.com</a>&gt; wrote:</div><br></blockquote></div></div></div><div dir="auto" style="word-wrap:break-word"><div><div style="direction:ltr"><blockquote type="cite"><div><div style="word-wrap:break-word"><div>As the primary implementer of the Swift access model when it first went in, I don't think we need something like "classified". The purpose of access control is to make sure implementation details stay hidden from other parts of the program. If you're in the same file, you're not in another part of the program. (If your files are big enough that you <i>are</i>&nbsp;in another part of the program, maybe you should split things up into more files.)</div><div><br></div><div>I <i>am</i> glad that you're not treating extensions as "just part of the type". A lot of people say "oh, of course my 'just for the type' modifier allows extensions to see things", forgetting that extensions be added in any file in the program, including outside the module. You can even add extensions for the sole purpose of accessing these members, and therefore there's no protection at all.</div><div><br></div><div>This doesn't mean you can't submit a proposal officially to the swift-evolution repo, or even that it won't get reviewed. (I'm not on the core team, and even core team members can be overruled by the rest of the team.) It just means I'm against it. :-) I am glad people are thinking about it, though!</div><div><br></div><div>As for "Swift 3" specifically, I'll repeat Chris's canned message: the schedule for Swift 3 is already pretty full with our documented goals, so there's really no guarantee about what will or won't get engineering time for that release.</div><div><br></div><div>Best,</div><div>Jordan</div><br><div><blockquote type="cite"><div>On Dec 8, 2015, at 8:07, Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">I would be happy to do it, but I would like to know how broad the interest in exploring this is first, and especially whether this is something the core team is willing to consider for Swift 3 (depending on details of course).<br><br>Sent from my iPhone</div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br>On Dec 8, 2015, at 7:37 AM, Ilya &lt;<a href="mailto:ilya@harmonicsense.com" target="_blank">ilya@harmonicsense.com</a>&gt; wrote:<br><br></div><blockquote type="cite" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div>Hi Matthew,<br><br>Maybe you could write the proposal? I'd be happy to do it, but it was your idea. Also, I think that you will express it better.<br><br>--<br>Ilya Belenkiy<br><div class="gmail_quote"><div dir="ltr">On Mon, Dec 7, 2015 at 2:11 PM Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" target="_blank">matthew@anandabits.com</a>&gt; wrote:<br></div><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="auto"><div>Glad you like my reframing!&nbsp; Is anyone planning to write a proposal for this?<br><br>Sent from my iPad</div></div><div dir="auto"><div><br>On Dec 7, 2015, at 1:00 PM, Ilya &lt;<a href="mailto:ilya@harmonicsense.com" target="_blank">ilya@harmonicsense.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div>Yes, that's a great idea!<br><br>--<br>Ilya Belenkiy<br><div class="gmail_quote"><div dir="ltr">On Mon, Dec 7, 2015 at 1:35 PM Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" target="_blank">matthew@anandabits.com</a>&gt; wrote:<br></div><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="auto"><div>I think what you are really trying to accomplish is to restrict access to a member to the scope in which it is declared, which just happens to be a type declaration. &nbsp;</div><div><br></div><div>By looking at it in terms of scope the feature would be come more generally applicable.&nbsp; For example, you could have a 'classified' member in an extension which is only visible inside the body of the extension.&nbsp; This would be useful if the extension contains helper methods as part of its implementation.</div><div><br></div><div>I would absolutely support extending Swift's scope-based access control to allow for more granular control of visibility within a file by extending it to syntactic scopes.&nbsp; It seems like a pretty natural enhancement to the existing feature.</div><div><br>Sent from my iPad</div></div><div dir="auto"><div><br>On Dec 7, 2015, at 11:02 AM, Ilya &lt;<a href="mailto:ilya@harmonicsense.com" target="_blank">ilya@harmonicsense.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div style="white-space:pre-wrap">If it is not allowed in extensions or subclasses  (and it shouldn't), the model is still very simple.<br><br>I understand the current model, but I think that there is a lot of value in getting the compiler's help in ensuring that class internals cannot be broken by anything outside the class.<br><br>The current model doesn't solve this problem well. Putting everything in separate files seems like a very unfortunate workaround.<br><br>--<br>Ilya Belenkiy</div><br><div class="gmail_quote"><div dir="ltr">On Mon, Dec 7, 2015 at 9:41 AM Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" target="_blank">matthew@anandabits.com</a>&gt; wrote:<br></div><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="auto"><div>I was not sure how I felt about Swift's access control when it was first announced but it didn't take long for me to believe it strikes a pretty good balance between complexity and ability to hide implementation details.</div><div><br></div><div>It follows a very straightforward scope-driven strategy.&nbsp; If it is extended further I would like to see any enhancements follow the same scope-driven strategy rather than being type-driven as is seen in other languages.&nbsp; Proposals along these lines might be interesting to consider and might be able to accomplish what you are hoping to accomplish while affording additional flexibility.</div><div><br></div><div>In a language where distributing the implementation of a type across several extensions sometimes in different files a type-driven access control model doesn't make a lot of sense to me.&nbsp; I think it has a lot of potential to be confusing. &nbsp;</div><div><br></div><div>What would it mean to limit access to a member to the type itself in Swift?&nbsp; Would an extensions in the same (or different) files be able to see the member?&nbsp; What about extensions in a different module?&nbsp; And what about subclasses? Subclasses probably wouldn't have visibility to them, but any discussion of something like this will probably lead to discussion of protected as well.</div><div><br>Sent from my iPad</div></div><div dir="auto"><div><br>On Dec 7, 2015, at 7:45 AM, Ilya via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br><br></div></div><div dir="auto"><blockquote type="cite"><div>Also, one problem with the current approach is that it's all or nothing. The classes in one file see everything from the other classes, and it may be useful to limit that and share only some additional APIs with those related classes, but not all of the implementation details / internal state, while still hiding those same APIs from unrelated classes. Currently, there is no way of doing it, even when splitting code into separate files (the class state must be all in one place and can't be in an extension).<br><br>--<br>Ilya Belenkiy<br><div class="gmail_quote"><div dir="ltr">On Mon, Dec 7, 2015 at 8:17 AM Ilya &lt;<a href="mailto:ilya@harmonicsense.com" target="_blank">ilya@harmonicsense.com</a>&gt; wrote:<br></div><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">My main proposal was not to change the semantics of private (although I would like that) but to introduce a way to keep class implementation details inaccessible to anything outside the class. I think that it should still be possible and useful to have the current level of sharing (I would just name it differently, given what private usually means in other languages).<br><br>Just as it is convenient to group several related classes that can refer to each other's implementation details, it is very convenient to have several classes that don't do this but are still related in other important way, for example related APIs or classes that are based on the same implementation idea (like array based data structures).<br><br>Having all code in one place rather than jumping through many small files is a very nice thing to have because it really helps to keep everything consistent. The more manual work people have to do for consistency, the more likelihood that it won't be done.<br><br>--<br>Ilya Belenkiy<br><div class="gmail_quote"><div dir="ltr">On Mon, Dec 7, 2015 at 12:21 AM John McCall &lt;<a href="mailto:rjmccall@apple.com" target="_blank">rjmccall@apple.com</a>&gt; wrote:<br></div><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"><br>&gt; On Dec 5, 2015, at 8:39 PM, Ilya via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>&gt;<br>&gt; I think the it would help a great deal to have an access level modifier that is really private and visible only inside the class itself. Right now, the only way to hide implementation details for a class is to hide the class code in a separate file, which is very inconvenient for several reasons:<br>&gt;<br>&gt; 1) the meaning of the code changes depending on which file the class is in. It's very easy to accidentally expose class internal details and then call class elements that are meant to be used only inside the class. Having a keyword for class internals will allow the compiler to ensure that only the public API for the class is used from the outside world. The user can check types on his own, but it's better that the compiler does it automatically. Similarly, the user can check that only the proper APIs are called, but it's better that the compiler does it automatically.<br>&gt;<br>&gt; 2) accessibility by file structure may cause some really short files.<br>&gt;<br>&gt; 3) It's impossible to group related classes in one file but still hide implementation details inside each class<br>&gt;<br>&gt; I think that it the best solution is to make private keyword do what it states -- keep the class element private to the class. But if it's really important to have a separate keyword for backward compatibility, it would be the next best thing.<br><br>But on the flip side, with your proposed semantics for private, it would be impossible to write a group of related types, functions, and extensions that do need to refer to each other’s internal details without exposing those details to the entire module.&nbsp; That’s not really acceptable.<br><br>The Swift language rule encourages you to put independent definitions in different files.&nbsp; That definitely means that, if you want to enforce very tight separation of concerns, you’ll end up with more and smaller files.&nbsp; You haven’t explained why that’s really a *problem*, though.<br><br>John.</blockquote></div></blockquote></div></div></blockquote></div><div dir="auto"><blockquote type="cite"><div><img src="https://u2002410.ct.sendgrid.net/wf/open?upn=eLFMrKDT8iBxZ-2Fbnk-2BZqvSchNN-2FvYXdceA0T7VxwkAd8QJn-2Fbf-2BZHewgsbyhJg7VRh-2FIFco1XmDSy5txMLseiHN4HzyfGxyvV1-2F-2FdfExVugtV6JzIP3uCosVL28kIdBv8VxG4Ck51y-2FBWyLgiFJuVxI1VKdQFFK6WatCUHmAAuc6RczFh-2FBuODdBPKIQ6Wxt7nrda1kKAixYNV9Q1oxyLg3e3VyvYgioAsu483YZ3ns-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0px!important;margin:0px!important;padding:0px!important"></div></blockquote></div><div dir="auto"><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></div></blockquote></div></div></blockquote></div></blockquote></div></div></blockquote></div></blockquote></div></div></blockquote><img src="https://u2002410.ct.sendgrid.net/wf/open?upn=f6VunEbxOyO0-2FacKqVTeu6pGEEellWH1YmuP-2Bt5lLhO1Bf3lg6LLAnCG9usYYsZ7R3e2NEsDRfUOcxMSw6LiCGNkpK-2B9Wik-2BUvRNMkeMTYwTttAT5hjJ3dM9hdOF4WXHSOALxIbQ7X6Dpos3WeHiuZozfCOl2940LJPXw-2FXG2Pe8uEwRBX0CggpZfPcekeSocJ4R-2B0W9q-2F-2Flfe0lhU2TgfoqfaVN7IjWR39hhcUHGpY-3D" alt="" width="1" height="1" border="0" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;min-height:1px!important;width:1px!important;border-width:0px!important;margin:0px!important;padding:0px!important"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant: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!important"><span>&nbsp;</span></span><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant: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!important">_______________________________________________</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant: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:12px;font-style:normal;font-variant: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!important">swift-evolution mailing list</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="mailto:swift-evolution@swift.org" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">swift-evolution@swift.org</a><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a></div></blockquote></div><br></div></div></blockquote></div></div></div></div>
</div></blockquote></div></blockquote></div></div></div>
</div></blockquote></body></html>