<div dir="ltr">Why not define some other symbol so that you can get the precedence you want?</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature">  -- Howard.<br></div></div>
<br><div class="gmail_quote">On 30 November 2016 at 09:28, Greg Parker via swift-users <span dir="ltr">&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@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"><br>
&gt; On Nov 29, 2016, at 2:55 AM, Rick Mann via swift-users &lt;<a href="mailto:swift-users@swift.org">swift-users@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Working on dimensional analysis, I have some proof-of-concept code that seems to be working:<br>
&gt;<br>
&gt;    let n1 = kilogram * meter / second * second<br>
&gt;    ([(kg⋅m) / s]⋅s)<br>
&gt;<br>
&gt;     let n2 = kilogram * meter / (second * second)<br>
&gt;    [(kg⋅m) / (s⋅s)]<br>
&gt;<br>
&gt; Note: () around unit products, [] around unit quotients.<br>
&gt;<br>
&gt; I&#39;d like to adjust the precedence of operator * for my Unit protocol to be higher than /. Is that possible? It wasn&#39;t at all clear to me how to do that in Swift 3, or if can even be done at all.<br>
<br>
You can&#39;t. A Swift operator&#39;s precedence is the same for all types that implement that operator. Operators * and / cannot use the same precedence on Int but different precedence on Unit.<br>
<br>
You could try to change the precedence of * and / globally - they&#39;re defined like any other operator in stdlib/public/core/Policy.<wbr>swift - but you&#39;ll break lots of other code that way.<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
--<br>
Greg Parker     <a href="mailto:gparker@apple.com">gparker@apple.com</a>     Runtime Wrangler<br>
<br>
<br>
______________________________<wbr>_________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-users</a><br>
</font></span></blockquote></div><br></div>