You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I took a quick scan through the code in case there was an easy fix, but it looks like Base.invokelatest(f, args...) (base/essentials.jl) jumps directly to Core._apply_latest(f, args) (src/builtin.c). Is there a way to add this functionality without editing multiple functions in builtins.c?
The text was updated successfully, but these errors were encountered:
That took more effort than I expected, but all the tests are passing
without errors or deprecation warnings.
The most annoying issue is Julia's new "world age counter" feature
(bug?). It's now impossible to call the functions produced by
compiling algebraic networks before they propagate to the toplevel:
https://docs.julialang.org/en/latest/manual/methods.html#Redefining-Methods-1
Also, we can't use the `invokelatest` workaround because it doesn't
yet support keyword arguments:
JuliaLang/julia#22642
I took a quick scan through the code in case there was an easy fix, but it looks like
Base.invokelatest(f, args...)
(base/essentials.jl
) jumps directly toCore._apply_latest(f, args)
(src/builtin.c
). Is there a way to add this functionality without editing multiple functions in builtins.c?The text was updated successfully, but these errors were encountered: