MethodAnalysis.jl icon indicating copy to clipboard operation
MethodAnalysis.jl copied to clipboard

Utilities to analyze Julia's method tables

Results 4 MethodAnalysis.jl issues
Sort by recently updated
recently updated
newest added

Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 1 to 2. Release notes Sourced from julia-actions/setup-julia's releases. v2.0.0 - Update to Node20 What's Changed update to node20 by @​ranocha in julia-actions/setup-julia#209 Note the rationale for...

dependencies

Hi @timholy! :) I'm super stoked to see this package, and i want more people to be able to inspect things like this! :) If you haven't already, you might...

This was surfaced in https://discourse.julialang.org/t/how-do-i-precompile-a-callable-struct/115037/5, this package is assuming that only subtypes of `Base.Callable` have methods, but that's not true. ```julia julia> struct Foo end julia> (::Foo)() = 1 julia>...