<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=""><br class=""><div><blockquote type="cite" class=""><div class="">Am 08.01.2016 um 19:58 schrieb Kevin Ballard via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;:</div><br class="Apple-interchange-newline"><div class="">


<title class=""></title>

<div class=""><div class="">On Fri, Jan 8, 2016, at 12:56 AM, Thorsten Seitz wrote:<br class=""></div>
<blockquote type="cite" class=""><div class="">&nbsp;</div>
<div class=""><blockquote type="cite" class=""><div class="">Am 08.01.2016 um 00:41 schrieb Kevin Ballard via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt;:<br class=""></div>
<div class="">&nbsp;</div>
<div class=""><div class=""><div class="">On Thu, Jan 7, 2016, at 03:11 PM, Matthew Johnson wrote:<br class=""></div>
<blockquote type="cite" class=""><div class="">&nbsp;</div>
<div class=""><blockquote type="cite" class=""><div class="">On Jan 7, 2016, at 3:31 PM, Kevin Ballard &lt;<a href="mailto:kevin@sb.org" class="">kevin@sb.org</a>&gt; wrote:<br class=""></div>
<div class="">&nbsp;</div>
<div class=""><div class=""><div class="">On Thu, Jan 7, 2016, at 07:12 AM, Matthew Johnson wrote:<br class=""></div>
<blockquote type="cite" class=""><div class=""><div class="">Do you have an example of where you would want a caller to initialize a property, but then overwrite the value they provide <b class="">during initialization</b>?<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Sure, how about something like a Rect type that always guarantees it's in "standard" form (e.g. no negative sizes):<br class=""></div>
<div class="">&nbsp;</div>
<div class="">struct StandardRect {<br class=""></div>
<div class="">&nbsp; &nbsp; var origin: CGPoint<br class=""></div>
<div class="">&nbsp; &nbsp; var size: CGSize {<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; didSet {<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // ensure standardized form here<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; }<br class=""></div>
<div class="">&nbsp; &nbsp; }<br class=""></div>
<div class="">&nbsp;</div>
<div class="">&nbsp; &nbsp; memberwise init(...) {<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; if size.width &lt; 0 {<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; origin.x += size.width<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; size.width = -size.width<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; }<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; if size.height &lt; 0 {<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; origin.y += size.height<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; size.height = -size.height<br class=""></div>
<div class="">&nbsp; &nbsp; &nbsp; &nbsp; }<br class=""></div>
<div class="">&nbsp; &nbsp; }<br class=""></div>
<div class="">}<br class=""></div>
</div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">This is a good example. &nbsp;Thanks! &nbsp;<br class=""></div>
</div>
</blockquote></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Actually I do not like this example for several reasons: (1) I would make the rectangle an immutable type with let properties, (2) the didSet already seems to do what is encoded in the memberwise init, so this seems to be redundant, (3) the memberwise init is so complex that having the automatic initialization feature is not really worth it for this example, especially as it seems to require using var properties instead of let properties to do the overwriting.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">1) Why would you make it immutable? That helps nothing and only serves to make the type harder to use. Structs should _rarely_ be immutable, you should always default to mutable and only make things immutable if there's a good reason for it. If the struct itself is in an immutable position then it inherits the immutability, which handles all of the reasons why you might otherwise default to immutable.<br class=""></div></div></div></blockquote><div><br class=""></div>Hmm, food for thought… guess I still haven’t completely understood Swift’s handling of immutability… thanks for pointing that out!</div><div><br class=""><blockquote type="cite" class=""><div class="">

<div class="">2) didSet isn't triggered in init. There's no redundancy.<br class=""></div></div></blockquote><div><br class=""></div>You are right, of course. I forgot that when I wrote the mail.</div><div><br class=""><blockquote type="cite" class=""><div class="">
<div class="">3) You really really want var properties anyway, it's pointless to use let properties.</div></div></blockquote><blockquote type="cite" class=""><div class=""><blockquote type="cite" class=""><div class=""><blockquote type="cite" class=""><div class=""><blockquote type="cite" class=""><div class=""><div class="">I think cases like this will be rare so I still think a warning is a good idea. &nbsp;Something like -Wno-overwrite-memberwise-init would allow it to be suppressed in cases where you actually do intend to do this. &nbsp;Would that satisfy you?<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">No. It's not appropriate to have the only way to suppress a warning on perfectly legal code to be passing a flag to the swiftc invocation. Especially because we have no precedent yet for even having flags like that.<br class=""></div>
<div class="">&nbsp;</div>
<div class="">What's wrong with the suggestion to make the warning behave the same way as dead store warnings (e.g. warn if the property is overwritten without any prior reads)? We already have logic for doing this kind of analysis.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">&nbsp;</div>
<div class="">I think this would not be sufficient, because this would not allow overwriting a property based on the value of another property which might be necessary as well.<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">That seems much less likely to be necessary, because if you're doing that, then you're completely ignoring one of your parameters.</div></div></blockquote><blockquote type="cite" class=""><div class="">
<div class="">&nbsp;</div>
<blockquote type="cite" class=""><div class=""><div class="">Actually isn’t this what happens in your example? The property origin is overwritten without being read, so this would generate the warning, or did I understand something wrong?<br class=""></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Origin is being modified. Modification reads it first. `x += 2` reads `x` before writing to it.<br class=""></div></div></blockquote><div><br class=""></div><div>I stand corrected.</div><div><br class=""></div><div>-Thorsten</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class="">
<div class="">&nbsp;</div>
<div class="">-Kevin Ballard</div>
<div class="">&nbsp;</div>

<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=1MXK54sosN3xru3iYcLt0oBZ2w20i49gyogXctgrspe4Lg9TcDLfECvApkQ3YKnyH-2FrgKXyeYrvQx3EdWvkgdtW4823SfQYc9PhfhhsxvAmN-2FlmB70W2SL9xIEg7oqoHiNkAhq6cpKeGPEdfbG3chTw0UvyIOWEtlTJuMEvuMN8YGP8zVjOavKkqWyKTE5ULQ4luT5OfPLvKTwdEhzRk7PKrqaBV1C9L7Wzhbo-2Bwgbk-3D" alt="" width="1" height="1" border="0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;" class="">
</div>


_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></blockquote></div><br class=""></body></html>