<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="">Let’s take this it’s next logical conclusion: I have two types that need to access each other’s members for some significant performance gain. Let’s call these types A and B. Now, A also needs access to the inner members for C for the same reason (but note that B does not). I currently have other related types all in the same file, let’s say D and E.<div class=""><br class=""></div><div class="">Now, all members should be “local” to the types, but remember, A needs to access B's and C's members and the other types do not. Also, I can’t simply move the them to different files because they have non-overlapping “local” usage requirements. So do I need to create a “local friend” modifier so only particular types can access the inner details?</div><div class=""><br class=""></div><div class=""><div class=""><div class="">There’s a line somewhere where complexity becomes more burdensome. I’m not sure if “local” is that line, but I absolutely do know that “local friend” is across that line (because of course we’ll need private friend and internal friend modifiers as well…).</div><div class=""><br class=""></div><div class=""><blockquote type="cite" class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">I imagine physical layout like this is not uncommon in Swift code. &nbsp;This does not necessarily mean you want these extensions to see implementation details of each other. &nbsp;By adding a ‘scope’ access modifier we are able to properly hide these implementation details regardless of physical layout. &nbsp;</div></div></blockquote><br class=""></div><div class="">As mentioned above, what if you only want to make them available to <i class="">some</i>&nbsp;of the extensions?</div><div class=""><br class=""></div><div class="">-David</div><div class=""><br class=""></div></div></div></body></html>