We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e24faa5 commit 74d6ae5Copy full SHA for 74d6ae5
src/julia-parser.scm
@@ -1,7 +1,7 @@
1
;; Operator precedence table, lowest at top
2
3
; for most operators X there is a .X "elementwise" equivalent
4
-(define (add-dots ops) (append! ops (map (lambda (op) (symbol (string "." op))) ops)))
+(define (add-dots ops) (append! ops (map (lambda (op) (symbol (string "." op))) ops) (map (lambda (op) (symbol (string op "."))) ops)))
5
6
;; note: there are some strange-looking things in here because
7
;; the way the lexer works, every prefix of an operator must also
0 commit comments