Open
Description
Only a subset of available operators allow the shorthand OPERATOR=
notation. I think the current situation is that only ASCII operators are covered.
e.g.
julia> a ×= b
ERROR: syntax: unexpected "="
in eval(::Module, ::Any) at ./boot.jl:236
I think it would be reasonable if all operators which allow binary infix syntax would also allow the shorthand. (This came up when I defined a custom ⊗
operator.)