<div dir="ltr">You could also define a ** exponentiation operator, i.e. &quot;kilogram * meter / second**2&quot;.<div class="gmail_extra">
<br><div class="gmail_quote">On Tue, Nov 29, 2016 at 4:15 PM, Rick Mann 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"><span class=""><br>
&gt; On Nov 29, 2016, at 15:22 , Howard Lovatt &lt;<a href="mailto:howard.lovatt@gmail.com">howard.lovatt@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Why not define some other symbol so that you can get the precedence you want?<br>
<br>
</span>I could, but I think I&#39;ll just leave things as they are. No need to add confusion; it works to use parentheses.<br>
<span class="im HOEnZb"><br>
&gt;<br>
&gt;   -- Howard.<br>
&gt;<br>
&gt; On 30 November 2016 at 09:28, Greg Parker via swift-users &lt;<a href="mailto:swift-users@swift.org">swift-users@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; &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; &gt;<br>
&gt; &gt; Working on dimensional analysis, I have some proof-of-concept code that seems to be working:<br>
&gt; &gt;<br>
&gt; &gt;    let n1 = kilogram * meter / second * second<br>
&gt; &gt;    ([(kg⋅m) / s]⋅s)<br>
&gt; &gt;<br>
&gt; &gt;     let n2 = kilogram * meter / (second * second)<br>
&gt; &gt;    [(kg⋅m) / (s⋅s)]<br>
&gt; &gt;<br>
&gt; &gt; Note: () around unit products, [] around unit quotients.<br>
&gt; &gt;<br>
&gt; &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>
&gt;<br>
&gt; 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>
&gt;<br>
&gt; 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>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Greg Parker     <a href="mailto:gparker@apple.com">gparker@apple.com</a>     Runtime Wrangler<br>
&gt;<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; swift-users mailing list<br>
&gt; <a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
&gt; <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>
&gt;<br>
<br>
<br>
</span><span class="HOEnZb"><font color="#888888">--<br>
Rick Mann<br>
<a href="mailto:rmann@latencyzero.com">rmann@latencyzero.com</a><br>
</font></span><div class="HOEnZb"><div class="h5"><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>
</div></div></blockquote></div><br></div></div>