<div dir="ltr">While I used `||=` in Ruby all the time, where everything can be `nil`, I&#39;ve found that Swift&#39;s Optional model is different enough that I&#39;ve never really desired a `??=`, so I&#39;m a -1 for the proposal, as I see it encouraging the use of optionals where a non-optional would be preferred.<div><br></div><div>With the `chatTitleName` example, I&#39;d probably make `&quot;Default&quot;` the default argument on initialization (and make it so `chatTitleName` is not optional), or I&#39;d move the `chatTitleName ?? &quot;Default&quot;` into the presentation logic.<br></div><div><br></div><div>Stephen</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 16, 2015 at 9:28 AM, Marc Knaup 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><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I&#39;m still uncertain whether that would solve the issue at the right location.<div><br></div><div>How do you end up in such a situation where this is actually necessary?</div><div>Why do I not end up in such situations?</div><div>I&#39;d like to understand where the discrepancy comes from.</div><div><br></div><div>I.e. where do you define chatTitleName? Where else do you set chatTitleName?</div><div>Why isn&#39;t it initially set to &quot;Default&quot; an then overwritten on-demand?</div>















</div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 16, 2015 at 3:22 PM, Kevin Wooten <span dir="ltr">&lt;<a href="mailto:kdubb@me.com" target="_blank">kdubb@me.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><div><div><blockquote type="cite"><div>On Dec 16, 2015, at 4:12 AM, Al Skipp via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br><div><div style="word-wrap:break-word"><div><blockquote type="cite"><div>On 16 Dec 2015, at 00:58, Marc Knaup via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br><div><div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">I tend towards -1 for multiple reasons:<div><ul><li>It has little value for local variables. In most cases you want to use the value you assign to a local variable and assigning it to an optional variable would require a subsequent unwrapping. In most cases where local variables are involved &quot;var x = y ?? z&quot; is satisfying as it creates a non-optional value iff z is non-optional.<br><br></li><li>It seems to be a rare use case that you set a value of an optional property which is currently nil and without also using that value directly within the same context. Quickly checking my Swift apps reveals only very little such use cases.<br><br></li><li>The remaining cases could expressed like &quot;object.property = object.property ?? …&quot; or using &quot;if object.property == nil { … }&quot;.<br>While it is true that variable and property name could be very long, this is an unlikely case of an already rare case which decreases the value of the proposed assignment operator even further.<br><br></li><li>Most important though is that such an optional assignment operator would work differently from all other assignment operators. The right operand would never be executed if the variable being assigned is already non-nil. This will likely be unexpected for a lot of developers who expect similar behavior like in all other assignments.</li></ul></div></div></div></blockquote>I think these are all very good points. Seems like the only really practical use would be restricted to:</div><div>object.property ??= val</div><div><br></div><div>Instead of:</div><div>object.property = object.property ?? val</div><div><br></div><div>Is it worth it for that one scenario? As Marc pointed out, the ?? operator is much more versatile as it can also be used to return a non-optional value.</div></div></div></blockquote><div><br></div></div></div><div>After perusing our Swift code it turns out that we use the long form (a = a ?? def) quite a bit.  As it was previously mentioned it, when the variables is named “a” it’s clearly not an issue, but this is…</div><div><br></div><div>    messagesViewController.chatTitleName =  messagesViewController.chatTitleName ?? “Default”</div><div><br></div><div>(Those are effectively real world variable names). </div><div><br></div><div>I think quite a bit of the clarity of this statement is lost by the duplication and the proposed form..</div><div><br></div><div>    messagesViewController.chatTitleName ??= “Default”</div><div><br></div><div>clears it up fairly well.</div><span><div><br></div><blockquote type="cite"><div><div style="word-wrap:break-word">
<img alt="" width="1" height="1" border="0" style="min-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">
</div>
_______________________________________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div></blockquote></span></div><br></div></blockquote></div><br></div>
<img alt="" width="1" height="1" border="0" style="min-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">
</div></div><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div>