File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Julia v1.5 Release Notes
4
4
New language features
5
5
---------------------
6
6
* Macro calls ` @foo {...} ` can now also be written ` @foo{...} ` (without the space) ([ #34498 ] ).
7
+ * ` ⨟ ` is now parsed as a binary operator with times precedence. It can be entered in the REPL
8
+ with ` \bbsemi ` followed by <kbd >TAB</kbd > ([ #34722 ] ).
7
9
8
10
Language changes
9
11
----------------
Original file line number Diff line number Diff line change 26
26
(define prec-colon (append! ' (: |..|) (add-dots ' (… ⁝ ⋮ ⋱ ⋰ ⋯))))
27
27
(define prec-plus (append! ' ($)
28
28
(add-dots ' (+ - |\|| ⊕ ⊖ ⊞ ⊟ |++| ∪ ∨ ⊔ ± ∓ ∔ ∸ ≏ ⊎ ⊻ ⊽ ⋎ ⋓ ⧺ ⧻ ⨈ ⨢ ⨣ ⨤ ⨥ ⨦ ⨧ ⨨ ⨩ ⨪ ⨫ ⨬ ⨭ ⨮ ⨹ ⨺ ⩁ ⩂ ⩅ ⩊ ⩌ ⩏ ⩐ ⩒ ⩔ ⩖ ⩗ ⩛ ⩝ ⩡ ⩢ ⩣))))
29
- (define prec-times (add-dots ' (* / ÷ % & ⋅ ∘ × |\\| ∩ ∧ ⊗ ⊘ ⊙ ⊚ ⊛ ⊠ ⊡ ⊓ ∗ ∙ ∤ ⅋ ≀ ⊼ ⋄ ⋆ ⋇ ⋉ ⋊ ⋋ ⋌ ⋏ ⋒ ⟑ ⦸ ⦼ ⦾ ⦿ ⧶ ⧷ ⨇ ⨰ ⨱ ⨲ ⨳ ⨴ ⨵ ⨶ ⨷ ⨸ ⨻ ⨼ ⨽ ⩀ ⩃ ⩄ ⩋ ⩍ ⩎ ⩑ ⩓ ⩕ ⩘ ⩚ ⩜ ⩞ ⩟ ⩠ ⫛ ⊍ ▷ ⨝ ⟕ ⟖ ⟗)))
29
+ (define prec-times (add-dots ' (* / ÷ % & ⋅ ∘ × |\\| ∩ ∧ ⊗ ⊘ ⊙ ⊚ ⊛ ⊠ ⊡ ⊓ ∗ ∙ ∤ ⅋ ≀ ⊼ ⋄ ⋆ ⋇ ⋉ ⋊ ⋋ ⋌ ⋏ ⋒ ⟑ ⦸ ⦼ ⦾ ⦿ ⧶ ⧷ ⨇ ⨰ ⨱ ⨲ ⨳ ⨴ ⨵ ⨶ ⨷ ⨸ ⨻ ⨼ ⨽ ⩀ ⩃ ⩄ ⩋ ⩍ ⩎ ⩑ ⩓ ⩕ ⩘ ⩚ ⩜ ⩞ ⩟ ⩠ ⫛ ⊍ ▷ ⨝ ⟕ ⟖ ⟗ ⨟ )))
30
30
(define prec-rational (add-dots ' (//)))
31
31
(define prec-bitshift (add-dots ' (<< >> >>>)))
32
32
; ; `where`
Original file line number Diff line number Diff line change @@ -524,6 +524,7 @@ const latex_symbols = Dict(
524
524
" \\ setminus" => " ∖" ,
525
525
" \\ ast" => " ∗" ,
526
526
" \\ circ" => " ∘" ,
527
+ blackboard* " semi" => " ⨟" ,
527
528
" \\ surd" => " √" ,
528
529
" \\ propto" => " ∝" ,
529
530
" \\ infty" => " ∞" ,
You can’t perform that action at this time.
0 commit comments