<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 Mar 10, 2016, at 9:19 AM, Joe Groff &lt;<a href="mailto:jgroff@apple.com" class="">jgroff@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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;">- As the parameter to an operator:</div><div class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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;"><br class=""></div><blockquote class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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; margin: 0px 0px 0px 40px; border: none; padding: 0px;"><div class="">++Foo&lt;T&gt; // prefix</div><div class="">Foo&lt;T&gt;++ // postfix</div><div class="">Foo&lt;T&gt;+Bar&lt;U&gt; // infix</div><div class="">Foo&lt;T&gt; + Bar&lt;U&gt;</div></blockquote></div></blockquote>How is this case different.<br class=""><blockquote type="cite" class=""><div class=""><blockquote class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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; margin: 0px 0px 0px 40px; border: none; padding: 0px;"><div class="">let foo = Bar&lt;U&gt;</div></blockquote></div></blockquote><blockquote class="" style="font-family: AvenirNext-Regular; margin: 0px 0px 0px 40px; border: none; padding: 0px;"><div class=""><br class=""></div></blockquote><span style="font-family: AvenirNext-Regular;" class="">Is assignment an operator?</span><br class=""><blockquote type="cite" class=""><div class=""></div></blockquote><blockquote type="cite" class=""><div class=""><blockquote class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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; margin: 0px 0px 0px 40px; border: none; padding: 0px;"><div class=""><br class=""></div></blockquote><span style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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; float: none; display: inline !important;" class="">This one's a bit interesting since `&gt;+` or `&gt;++` could be operators themselves. Applying operators to types might not be a compelling enough reason to block the other changes, though.</span></div></blockquote><div><br class=""></div>I’d be totally willing to say that if you want to apply an operator (other than assignment) to a type you need to put it in parentheses.</div><div><br class=""></div><div><blockquote class="" style="font-family: AvenirNext-Regular; margin: 0px 0px 0px 40px; border: none; padding: 0px;"><div class="">++(Foo&lt;T&gt;) // prefix</div><div class="">(Foo&lt;T&gt;)++ // postfix</div><div class="">(Foo&lt;T&gt;)+(Bar&lt;U&gt;) // infix</div><div class="">(Foo&lt;T&gt;) + (Bar&lt;U&gt;)</div><div class="">let foo = Bar&lt;U&gt;</div><div class=""><br class=""></div></blockquote><blockquote type="cite" class=""><div class=""><div class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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;"><br class=""></div><div class="" style="font-family: AvenirNext-Regular; font-size: 15px; font-style: normal; font-variant-caps: 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;">For (B), as I mentioned before, it makes the choice between [T] becoming 'Array&lt;T&gt;' or becoming an array containing 'T' a bit of an overload resolution problem. In most cases we can probably favor the type sugar, either by argument type context or by syntactically recognizing `T` as a static type reference and favoring the type sugar interpretation over the array literal implementation. Doug or Joe Pamer probably have opinions here.</div><br class="Apple-interchange-newline"></div></blockquote></div><br class=""></body></html>