I am glad you mention the &quot;protected&quot; scope. For me the private keyword is mostly just frustrating, precisely because I expect it to act in the way you describe &quot;protected&quot; - but it doesn&#39;t. This is probably because all of projects at my organisation (regardless of language) have files of about 100-150 lines each, making the distinction between private and fileprivate pretty useless. fileprivate is almost always my go-to, because despite the file length I like to split my types into logical sections via extensions.<br><br>On the other hand, a &quot;protected&quot; scope, exactly how you describe it, would be invaluable! It would allow me to split the definition of, say, a struct or class over multiple files within the same module, providing granulated control over which parts are available to the rest of the module or to the &quot;public&quot;. Right now we either have to put everything in one file, which really goes against the grain of our overall structure, or we have to make things that are really just implementation details available as &quot;internal&quot;.<br><br>I personally think a &quot;protected&quot; or &quot;type-internal&quot; scope adds a lot more value than two similarly-named &quot;private&quot; scopes. But I recognise that folks who enjoy long files (masochists) will understandably argue the exact opposite. But if it came down to it I&#39;d be happier with just &quot;private&quot;, than both it AND &quot;fileprivate&quot;.<br><br>Geordie<br><div class="gmail_quote"><div dir="ltr">Vladimir.S via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; schrieb am Do. 16. Feb. 2017 um 12:17:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 16.02.2017 10:14, Goffredo Marocchi via swift-evolution wrote:<br class="gmail_msg">
&gt; I think it would be a step back as it again oversimplifies access control<br class="gmail_msg">
&gt; IMHO. If we touch access control we should aim to improve it from both a<br class="gmail_msg">
&gt; library implementation point of view but for a user point of view as well.<br class="gmail_msg">
<br class="gmail_msg">
+1. I can&#39;t understand the opinion that we must to &quot;simplify&quot; but not<br class="gmail_msg">
&quot;improve&quot;. IMO access levels in languages like C# understandable by newbie<br class="gmail_msg">
very well. IMO there is nothing hard(not more than concept of Optional or<br class="gmail_msg">
generic type/protocol programming) to remember/understand 4-5 access<br class="gmail_msg">
levels. Especially, if newbie can start programming even don&#39;t know about<br class="gmail_msg">
access levels - as we have &quot;internal&quot; by default.<br class="gmail_msg">
But these access levels adds a real value for the programmer, when he/she<br class="gmail_msg">
can express intention better(even if there is just one coder!) and have<br class="gmail_msg">
compiler support.<br class="gmail_msg">
<br class="gmail_msg">
IMO we need the ability to say &quot;in subtype or in extension in the same<br class="gmail_msg">
*module*&quot;. Probably even just as &quot;in the current file and in subtype or in<br class="gmail_msg">
extension in the same *module*&quot;. I do think this solves the many questions<br class="gmail_msg">
raised regarding limitations of current access modifiers.<br class="gmail_msg">
<br class="gmail_msg">
Just as a variant:<br class="gmail_msg">
* public -&gt; outside of the module<br class="gmail_msg">
* internal -&gt; inside module<br class="gmail_msg">
* private -&gt; inside file<br class="gmail_msg">
* protected(or other keyword) -&gt; inside file + subtype&amp;extensions in the<br class="gmail_msg">
same module<br class="gmail_msg">
<br class="gmail_msg">
IMO very clear model. &quot;private&quot; is something that is personal, hidden and<br class="gmail_msg">
locked, nobody should touch this. &quot;protected&quot; - under protection, not for<br class="gmail_msg">
public, but in some situations access can be granted. In this case we have<br class="gmail_msg">
Swift2 simplicity of modifiers plus extra modifier that solves problems<br class="gmail_msg">
with code distribution in files and with sharing implementation details for<br class="gmail_msg">
subtypes/extensions in the same module. As I understand, no impact on ABI<br class="gmail_msg">
as &#39;protected&#39; just for internals of module. No?<br class="gmail_msg">
<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Sent from my iPhone<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; On 16 Feb 2017, at 06:20, Chris Lattner via swift-evolution<br class="gmail_msg">
&gt; &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a> &lt;mailto:<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt;&gt; wrote:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;&gt; On Feb 14, 2017, at 11:46 PM, Jean-Daniel via swift-evolution<br class="gmail_msg">
&gt;&gt; &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a> &lt;mailto:<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt;&gt; wrote:<br class="gmail_msg">
&gt;&gt;&gt;&gt;&gt; Keeping with the spirit of Swift and staying consistent with its<br class="gmail_msg">
&gt;&gt;&gt;&gt;&gt; design, I see two plausible meanings for private:<br class="gmail_msg">
&gt;&gt;&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;&gt;&gt; Private could mean either:<br class="gmail_msg">
&gt;&gt; ...<br class="gmail_msg">
&gt;&gt;&gt;&gt;&gt; (2) accessible only to the current type/scope and to extensions to<br class="gmail_msg">
&gt;&gt;&gt;&gt;&gt; that type that are in the current file.<br class="gmail_msg">
&gt;&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;&gt; I think (2) is worth discussing. My 2 cents:<br class="gmail_msg">
&gt;&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;&gt; *Pros*<br class="gmail_msg">
&gt;&gt;&gt;&gt; • Solves a high percentage of use cases of *fileprivate*<br class="gmail_msg">
&gt;&gt;&gt;&gt; • Type-scope proponents retain some of the safety<br class="gmail_msg">
&gt;&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;&gt; *Cons*<br class="gmail_msg">
&gt;&gt;&gt;&gt; • Less straight forward to explain<br class="gmail_msg">
&gt;&gt;&gt;&gt; • Access to different type/scope in same file not possible anymore<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; Which means that if we choose 2, we must keep fileprivate.<br class="gmail_msg">
&gt;&gt;&gt; Being able to access other type private members in the same file is an<br class="gmail_msg">
&gt;&gt;&gt; important feature that can’t be easily replaced, so it would badely<br class="gmail_msg">
&gt;&gt;&gt; break existing code if we remove it.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; Yeah, I think you’re right, which sinks the whole idea: we should aim to<br class="gmail_msg">
&gt;&gt; (re)simplify the access control model.  (2) is also problematic because<br class="gmail_msg">
&gt;&gt; it doesn’t allow the private members to be used by other things in the<br class="gmail_msg">
&gt;&gt; same file.  E.g. use a private member of Foo in an extension on String.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; IMO, removing fileprivate and making private match Swift 2 semantics<br class="gmail_msg">
&gt;&gt; seems like the more promising approach.<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; -Chris<br class="gmail_msg">
&gt;&gt; _______________________________________________<br class="gmail_msg">
&gt;&gt; swift-evolution mailing list<br class="gmail_msg">
&gt;&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a> &lt;mailto:<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt;<br class="gmail_msg">
&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; _______________________________________________<br class="gmail_msg">
&gt; swift-evolution mailing list<br class="gmail_msg">
&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
&gt;<br class="gmail_msg">
_______________________________________________<br class="gmail_msg">
swift-evolution mailing list<br class="gmail_msg">
<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
</blockquote></div>