<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="">On Dec 16, 2015, at 6:22 AM, Kevin Wooten via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div style="font-family: AvenirNext-Regular; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><blockquote type="cite" class=""><div class=""><br class="Apple-interchange-newline">On Dec 16, 2015, at 4:12 AM, Al Skipp via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class=""><blockquote type="cite" class=""><div class="">On 16 Dec 2015, at 00:58, Marc Knaup via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">I tend towards -1 for multiple reasons:<div class=""><ul class=""><li class="">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 "var x = y ?? z" is satisfying as it creates a non-optional value iff z is non-optional.<br class=""><br class=""></li><li class="">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 class=""><br class=""></li><li class="">The remaining cases could expressed like "object.property = object.property ?? …" or using "if object.property == nil { … }".<br class="">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 class=""><br class=""></li><li class="">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 class="">object.property ??= val</div><div class=""><br class=""></div><div class="">Instead of:</div><div class="">object.property = object.property ?? val</div><div class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class="">After perusing our Swift code it turns out that we use the long form (a = a ?? def) quite a bit. &nbsp;As it was previously mentioned it, when the variables is named “a” it’s clearly not an issue, but this is…</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; messagesViewController.chatTitleName = &nbsp;messagesViewController.chatTitleName ?? “Default”</div><div class=""><br class=""></div><div class="">(Those are effectively real world variable names).&nbsp;</div><div class=""><br class=""></div><div class="">I think quite a bit of the clarity of this statement is lost by the duplication and the proposed form..</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; messagesViewController.chatTitleName ??= “Default”</div><div class=""><br class=""></div><div class="">clears it up fairly well.</div></div></div></blockquote><br class=""></div><div>A few points:</div><div><br class=""></div><div>1. I've always thought we needed something like this; glad to see it discussed</div><div><br class=""></div><div>2. This is also applicable to dictionaries:</div><div class=""><br class=""></div><div class="">&nbsp;&nbsp;<span style="font-family: AvenirNext-Regular;" class="">messagesViewController.titleNames["chat"] ??= "Default"</span></div><div class=""><span style="font-family: AvenirNext-Regular;" class=""><br class=""></span></div><div class=""><div class=""><span style="font-family: AvenirNext-Regular;" class="">3. I think it may be time for a formal proposal :-)</span></div><div class=""><span style="font-family: AvenirNext-Regular;" class=""><br class=""></span></div><div class=""><span style="font-family: AvenirNext-Regular;" class="">4. One way the community can help us to evaluate it would be to create the API in an extension in your own code, actually apply it in your project, and evaluate what it does for readability.</span></div></div><div class=""><br class=""></div><div class="">Thanks,</div><div class=""><br class=""></div><div class="">-Dave</div><div class=""><div class=""><div class=""><br class=""></div><br class="Apple-interchange-newline">

</div>
<br class=""></div></body></html>