<div dir="ltr">Perhaps-conversely, what should this code do?<div><br></div><div>    let nextIndex = foundIndex ?? lastIndex + 1</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Jacob<br></div></div></div></div>
<br><div class="gmail_quote">On Sat, Sep 3, 2016 at 9:05 PM, Erica Sadun 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 style="word-wrap:break-word">Given: `<font face="Menlo">let x = Optional(3)</font>` then<blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><span style="font-family:Menlo">`let y = 5 + x ?? 2` </span>will not compile</div></blockquote><div>but </div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><font face="Menlo">`let y = 5 + (x ?? 2)` </font>will.</div></blockquote><div><br></div><div>Should <font face="Menlo">NilCoalescingPrecedence</font> be raised? The current operator precedence chain is:</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div><font face="Menlo">BitwiseShiftPrecedence &gt; MultiplicationPrecedence &gt; AdditionPrecedence &gt; RangeFormationPrecedence &gt; CastingPrecedence &gt; NilCoalescingPrecedence &gt; ComparisonPrecedence &gt; LogicalConjunctionPrecedence &gt; LogicalDisjunctionPrecedence &gt; TernaryPrecedence &gt; AssignmentPrecedence &gt; FunctionArrowPrecedence &gt; [nothing]</font></div></div></blockquote><div><br></div><div>It seems to me that `<font face="Menlo">NilCoalescingPrecedence</font>` should probably be higher than `<font face="Menlo">MultiplicationPrecedence</font>` and possibly higher `<font face="Menlo">BitwiseShiftPrecedence</font>` as its job is to produce an unwrapped value that can then be operated upon.</div><div><br></div><div>I think <font face="Menlo">CastingPrecedence</font> should be even higher because</div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><span style="font-family:Menlo">`expression as? T ?? fallback value`</span></div></blockquote><div>should be parsed as</div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><span style="font-family:Menlo">`(expression as? T) ?? (fallback value)`</span></div></blockquote><div><br></div><div>I apologize profusely because I know this is beyond last minute,</div><div><br></div><div>-- E</div><div><br></div></div><br>______________________________<wbr>_________________<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/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br></blockquote></div><br></div></div>