<div dir="ltr">You can already define custom operator `&lt;-`. I&#39;m talking about tokens which are reserved, but look like operators. For example,<br><div>postfix operator ! { }</div><div>is an error, which seems illogical, because optional force-unwrapping totally looks like an operator.</div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-04-11 0:14 GMT+03:00  <span dir="ltr">&lt;<a href="mailto:hitstergtd+swiftevo@gmail.com" target="_blank">hitstergtd+swiftevo@gmail.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">How about &quot;&lt;-&quot;?<br>
<br>
I could see a few shorthands with that for Strings, etc. :-)<br>
<br>
On 10 April 2016 at 22:03, Jean-Daniel Dupas via swift-evolution<br>
<div><div class="h5">&lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Le 10 avr. 2016 à 15:01, Антон Жилин via swift-evolution<br>
&gt; &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; a écrit :<br>
&gt;<br>
&gt; &amp; (as a prefix operator), -&gt;, ?, and ! (as a postfix operator)<br>
&gt;<br>
&gt; This is the list of built-ins that look like operators, but are banned from<br>
&gt; use as Swift custom operators.<br>
&gt;<br>
&gt; We can review that list.<br>
&gt;<br>
&gt; `&amp;` reserved as a prefix operators for a reason. It marks a variable use as<br>
&gt; `inout`, which currently cannot be done by any Swift operator function.<br>
&gt;<br>
&gt; Other three don&#39;t have such justification.<br>
&gt;<br>
&gt; `-&gt;`, `?` and `!` are used in types, but they are mostly unambiguous in<br>
&gt; expressions.<br>
&gt;<br>
&gt; The only use of `!` in expressions can be rewitten as a built-in operator<br>
&gt; function:<br>
&gt; postfix func ! &lt;T&gt; (left: T!) -&gt; T<br>
&gt;<br>
&gt; `?` is used in optional method calls:<br>
&gt; a.method?(b)<br>
&gt; A parallel proposal is going to remove such syntax from Swift, so this will<br>
&gt; not be a problem.<br>
&gt;<br>
&gt; `?` is also used in patterns:<br>
&gt; if case x? = optional { ... }<br>
&gt;<br>
&gt;<br>
&gt; While the use is unambiguous for the compiler, I’m not sure it’s going to be<br>
&gt; unambiguous for code readers. Having the same operator meaning different<br>
&gt; things depending the context is a bad idea IMHO.<br>
&gt;<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;<br>
</blockquote></div><br></div>