<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Mon, May 2, 2016 at 1:20 PM Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Tony, thanks for writing this up!<br>
<br>
on Mon May 02 2016, Tony Allevato &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
<br>
&gt; Other kinds of operators (prefix, postfix, assignment)<br>
&gt;<br>
&gt; Static operator methods have the same signatures as their global counterparts.<br>
&gt; So, for example, prefix and postfix operators as well as assignment operators<br>
&gt; would be defined the way one would expect:<br>
&gt;<br>
&gt; protocol SomeProtocol {<br>
&gt;   static func +=(lhs: inout Self, rhs: Self)<br>
&gt;   static prefix func ~(value: Self) -&gt; Self<br>
&gt;<br>
&gt;   // This one is deprecated, of course, but used here just to serve as an<br>
&gt;   // example.<br>
&gt;   static postfix func ++(value: inout Self) -&gt; Self<br>
&gt; }<br>
&gt;<br>
&gt; // Trampolines<br>
&gt; func += &lt;T: SomeProtocol&gt;(lhs: inout T, rhs T) {<br>
&gt;   T.+=(&amp;lhs, rhs)<br>
&gt; }<br>
&gt; prefix func ~ &lt;T: SomeProtocol&gt;(value: T) -&gt; T {<br>
&gt;   return T.~(value)<br>
&gt; }<br>
&gt; postfix func ++ &lt;T: SomeProtocol&gt;(value: inout T) -&gt; T {<br>
&gt;   return T.++(&amp;value)<br>
&gt; }<br>
<br>
How does one distinguish between calls to a static prefix operator and a<br>
static postfix operator with the same name?<br></blockquote><div><br></div><div>Ah, that&#39;s a tricky one that I don&#39;t have an immediate answer to, so I&#39;m definitely open to creative thoughts here.</div><div><br></div><div>The first stab I would take at is, what if we included the token &quot;prefix&quot; or &quot;suffix&quot; before the operator name in the expression, like this?</div><div><br></div><div>    return T.prefix ++(&amp;value)</div><div>    return T.postfix ++(&amp;value)</div><div><br></div><div>But that could start to look like an invocation of &quot;++&quot; on a static property &quot;T.prefix&quot;. I haven&#39;t dug into the parser to determine if that would even be feasible or not.</div><div><br></div></div></div>