<div dir="ltr">On Mon, Aug 8, 2016 at 6:16 PM, Rick Mann <span dir="ltr">&lt;<a href="mailto:rmann@latencyzero.com" target="_blank">rmann@latencyzero.com</a>&gt;</span> wrote:<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"><div class="HOEnZb"><div class="h5"><br>
&gt; On Aug 3, 2016, at 03:23 , Dan Loewenherz &lt;<a href="mailto:dan@lionheartsw.com">dan@lionheartsw.com</a>&gt; wrote:<br>
&gt;<br>
&gt; On Wed, Aug 3, 2016 at 3:51 AM, Rick Mann via swift-users &lt;<a href="mailto:swift-users@swift.org">swift-users@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; On Aug 2, 2016, at 19:06 , Jordan Rose &lt;<a href="mailto:jordan_rose@apple.com">jordan_rose@apple.com</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; I don’t think it makes sense to do this. A protocol cannot control how a particular property is implemented (stored or computed), and any conforming type must initialize all of its stored properties before returning from its own initializer. (You can’t write an initializer in a protocol that doesn’t delegate to another initializer because you don’t know what other stored properties the conforming type might have.)<br>
&gt; &gt;<br>
&gt; &gt; Given that the protocol can’t control how the property gets initialized, it doesn’t make sense to allow the protocol to &quot;set the variable, but only in the initializer”.<br>
&gt;<br>
&gt; Really? It seems pretty natural for a conforming type to set a property once in the initializer, and it&#39;s immutable from then on out. I can do that quite cleanly with classes, but there&#39;s no way (that I know) to describe this using protocols. Ideally, I could just do:<br>
&gt;<br>
&gt; protocol<br>
&gt; Element<br>
&gt; {<br>
&gt;     let uuid: UUID<br>
&gt; }<br>
&gt;<br>
&gt; which implies that all conforming types must initialize that value on creation, or provide a getter with let semantics (the latter might be too easy to break, and could be disallowed, requiring conforming types to create storage for the property and set it in init()).<br>
&gt;<br>
&gt; The compiler only knows as much as you tell it, and when you define a protocol and set it as { get } only, it&#39;s not going to let you set that property in a protocol extension for a protocol that doesn&#39;t expect a setter. Why or how would the compiler let you?<br>
&gt;<br>
&gt; The solution is to create your init implementation in a concrete type, and define the let property in there as well. E.g.<br>
&gt;<br>
&gt; protocol Element {<br>
&gt;     var uuid: UUID { get }<br>
&gt; }<br>
&gt;<br>
&gt; class Item: Element {<br>
&gt;     let uuid: UUID<br>
&gt;<br>
&gt;     init(uuid: UUID) {<br>
&gt;         self.uuid = uuid<br>
&gt;     }<br>
&gt; }<br>
&gt;<br>
<br>
</div></div>Because then Element.uuid doesn&#39;t have let semantics. It can&#39;t be set, but it&#39;s not constant.<br></blockquote><div><br></div><div>It&#39;s unavoidable. In this case, whether a variable can be set only once or more than once is an implementation detail that you need to deal with in a concrete type. What you&#39;re looking for would be a new feature, like &quot;setonce&quot;. But let&#39;s assume the language designers added that in, how would it work?</div><div><br></div><div>protocol Element {</div><div>    var uuid: UUID { get setonce }</div><div>}</div><div><br></div><div>And somewhere in your codebase, you have something like this:</div><div><br></div><div>for element in elements {</div><div>    element.uuid = UUID()</div><div>}</div><div><br></div><div>The problem is that whether or not &quot;uuid&quot; is set can only be decided at runtime. As a result, the type checker can&#39;t tell you if you&#39;re making a mistake. It has no way to know if you&#39;ve already set the value of &quot;uuid&quot; somewhere else, e.g., through a UI interaction, or some other code that&#39;s based on state.</div><div><br></div><div>The result is that if &quot;uuid&quot; happens to already be set, you&#39;d get a runtime error, which would be a very un-Swift-y thing to do, or every assignment would need to get wrapped in some sort of error handler.</div><div><br></div><div>Dan</div></div></div></div>