<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Currently, Swift supports a single level of access controls for properties. If a read/write property is declared as public, both the getter and the setter of that property will be publicly visible.<div class=""><br class=""></div><div class="">However, it is often the case that you need a stored property that is publicly read-only but internally or privately writeable. The current way to achieve this is by doing something like:</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal; font-family: 'Input Mono';" class="">&nbsp; &nbsp;&nbsp;<span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">public</span> <span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">var</span> authenticationValidUntil: <span style="font-variant-ligatures: no-common-ligatures; color: #703daa" class="">NSDate</span>? {</div><div style="margin: 0px; line-height: normal; font-family: 'Input Mono'; color: rgb(79, 129, 135);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class="">&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">return</span><span style="font-variant-ligatures: no-common-ligatures; color: #000000" class=""> </span>_authenticationValidUntil</div><div style="margin: 0px; line-height: normal; font-family: 'Input Mono';" class="">&nbsp; &nbsp; }</div><div style="margin: 0px; line-height: normal; font-family: 'Input Mono';" class="">&nbsp; &nbsp; <span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">private</span> <span style="font-variant-ligatures: no-common-ligatures; color: #bb2ca2" class="">var</span> _authenticationValidUntil: <span style="font-variant-ligatures: no-common-ligatures; color: #703daa" class="">NSDate</span>?</div></div><div class=""><br class=""></div><div class="">This seems like a lot of boilerplate to achieve a common goal. Objective-C supported a similar concept by being able to declare a property as read-only in a .h file while being able to override this as a read-write property in the .m file.</div><div class=""><br class=""></div><div class="">I propose being able to declare separate access controls for a property's getter and setter, wherein the setter could have more restrictive access controls than the getter.</div><div class=""><br class=""></div><div class="">For example:</div><div class=""><br class=""></div><div class=""><div style="margin: 0px; line-height: normal; font-family: 'Input Mono';" class="">&nbsp; &nbsp;&nbsp;<span style="color: rgb(187, 44, 162);" class="">var</span>&nbsp;authenticationValidUntil:&nbsp;<span style="color: rgb(112, 61, 170);" class="">NSDate</span>? {&nbsp;<span style="color: rgb(187, 44, 162);" class="">public get, private set&nbsp;</span>}</div></div><div class=""><br class=""></div><div class="">This would result in a public getter, while the implementer could still set the value of the property.</div><div class=""><br class=""></div><div class="">Curious to get your thoughts on this.</div><div class=""><br class=""></div><div class="">Regards,</div><div class=""><br class=""></div><div class="">E. Maloney</div><div class="">Gilt Groupe</div><div class=""><br class=""></div></body></html>