<div dir="ltr">On Thu, May 25, 2017 at 10:08 AM, Harshil Shah via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
The idea behind this is to add a shorter, cleaner syntax for the common pattern of using computed properties to provide public API for properties of private variables.<br>
<br>
For example:<br>
<br>
public var foo: Type {<br>
    get { return privateBar.baz }<br>
    set { privateBar.baz = newValue }<br>
}<br>
<br>
While this is a great improvement over the previous convention of `someVar:` and `setSomeVar:` as found in a lot of UIKit, it still has some issues.<br>
<br>
It is overly verbose for the task at hand. It requires specifying the type of property that the variable is effectively acting as an alias for, stating the property name twice, and also doesn’t preclude the possibility of mistakenly using `privateBar.baz = foo` in the setter, which looks correct at a glance but just assigns the existing value of `baz` back to it, effectively doing nothing.<br>
<br>
It could potentially be shortened, as follows:<br>
<br>
public alias var foo = privateBar.baz<br>
<br>
This new syntax omits additional type information which could be inferred from the type of the original variable, prevents any assignment mistakes in the setter, reduces the number of lines of code needed, and makes it clear that the purpose of the variable is simply to act as an alias.<br>
<br>
I have used the `alias` keyword above as a placeholder. I suppose there might be needed some way to clarify that `foo` is still a computed property, and not a stored property declared as having the value of `privateBar.baz`. I realise that introducing a new keyword is not a trivial change, however this was simply the best idea I could come up with; I’m sure the community can find better solutions.<br>
<br>
At the same time, a new keyword makes the intention of the variable explicit, and would break no Swift 3.* code.<br>
<br>
I realise this is just syntactic sugar, however the pattern is common enough that I feel like it merits some discussion.<br></blockquote><div><br></div><div>It&#39;s reasonable to ask for sugar when a common pattern is unusually verbose, but I&#39;d like to explore if that&#39;s really the case here.</div><div><br></div><div>I&#39;ve had occasion to use a public computed property which returns a private stored property, but it&#39;s _never_ been only that. There&#39;s usually some tricky validation going on or something else that prevents me from just making the private property `public` or `public internal(set)`. It seems you&#39;re showing one such case where the stored property is in fact stored in some other variable of a different type. Is it actually very common? In what sort of programming?<br></div></div></div></div>