We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was reading the 1.4 release notes and saw this issue: JuliaLang/julia#33568. I'm not sure if this is relevant to catlab, but it might me.
The text was updated successfully, but these errors were encountered:
note that \circ() = identity and \circ(f) = f now.
Sorry, something went wrong.
Thanks for noticing this change. In previous version of Julia, we had:
julia> methods(∘) # 1 method for generic function "∘": [1] ∘(f, g) in Base at operators.jl:832
In v1.4, we have:
julia> methods(∘) # 2 methods for generic function "∘": [1] ∘(f, g) in Base at operators.jl:859 [2] ∘(f, g, h...) in Base at operators.jl:860
Unfortunately, this will not help us in #131 because the original untyped method for \circ as a binary operator is still present.
No branches or pull requests
I was reading the 1.4 release notes and saw this issue: JuliaLang/julia#33568. I'm not sure if this is relevant to catlab, but it might me.
The text was updated successfully, but these errors were encountered: