Skip to content

Commit f45b6be

Browse files
JeffFesslerStefanKarpinski
authored andcommitted
Document customizable binary operators (#33479)
* Document customizable binary operators I learned indirectly through comments on a PR that \otimes and \oplus and \odot can be extended as binary operators yet I cannot find this fact anywhere in the documentation. Search the docs for `oplus` yields nothing. Somewhere there must be a list of which characters can be extended this way and it should be documented in the manual. This PR is an attempt to get that ball rolling! * Add url for list and fix prefix typo * Expand docs of infix binary operators.
1 parent 5294219 commit f45b6be

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

doc/src/base/math.md

+26
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,29 @@ Base.widemul
176176
Base.Math.@evalpoly
177177
Base.FastMath.@fastmath
178178
```
179+
180+
## Customizable binary operators
181+
182+
Some unicode characters can be used to define new binary operators
183+
that support infix notation.
184+
For example
185+
```⊗(x,y) = kron(x,y)```
186+
defines the `` (otimes) function to be the Kronecker product,
187+
and one can call it as binary operator using infix syntax:
188+
```C = A ⊗ B```
189+
as well as with the usual prefix syntax
190+
```C = ⊗(A,B)```.
191+
192+
Other characters that support such extensions include
193+
\odot ``
194+
and
195+
\oplus ``
196+
197+
The complete list is in the parser code:
198+
https://github.com/JuliaLang/julia/blob/master/src/julia-parser.scm
199+
200+
Those that are parsed like `*` (in terms of precedence) include
201+
`* / ÷ % & ⋅ ∘ × |\\| ∩ ∧ ⊗ ⊘ ⊙ ⊚ ⊛ ⊠ ⊡ ⊓ ∗ ∙ ∤ ⅋ ≀ ⊼ ⋄ ⋆ ⋇ ⋉ ⋊ ⋋ ⋌ ⋏ ⋒ ⟑ ⦸ ⦼ ⦾ ⦿ ⧶ ⧷ ⨇ ⨰ ⨱ ⨲ ⨳ ⨴ ⨵ ⨶ ⨷ ⨸ ⨻ ⨼ ⨽ ⩀ ⩃ ⩄ ⩋ ⩍ ⩎ ⩑ ⩓ ⩕ ⩘ ⩚ ⩜ ⩞ ⩟ ⩠ ⫛ ⊍ ▷ ⨝ ⟕ ⟖ ⟗`
202+
and those that are parsed like `+` include
203+
`+ - |\|| ⊕ ⊖ ⊞ ⊟ |++| ∪ ∨ ⊔ ± ∓ ∔ ∸ ≏ ⊎ ⊻ ⊽ ⋎ ⋓ ⧺ ⧻ ⨈ ⨢ ⨣ ⨤ ⨥ ⨦ ⨧ ⨨ ⨩ ⨪ ⨫ ⨬ ⨭ ⨮ ⨹ ⨺ ⩁ ⩂ ⩅ ⩊ ⩌ ⩏ ⩐ ⩒ ⩔ ⩖ ⩗ ⩛ ⩝ ⩡ ⩢ ⩣`
204+
There are many others that are related to arrows, comparisons, and powers.

0 commit comments

Comments
 (0)