We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ff89d commit 48572aeCopy full SHA for 48572ae
1 file changed
src/stdstr.jl
@@ -83,6 +83,10 @@ function parenthesize(f, arg::ir.HadamardProduct)
83
return "(" * f(arg.l) * " ⊙ " * f(arg.r) * ")"
84
end
85
86
+function parenthesize(f, arg::ir.Quotient)
87
+ return "(" * f(arg) * ")"
88
+end
89
+
90
function parenthesize(f, arg)
91
return f(arg)
92
0 commit comments