Reputation: 30684
Julie allows multiple dispatch.
So we can overload foo
:
foo(x::String)
foo(x::Float)
But how to retrieve all overloads currently in effect? (preferably together with filepath).
I was hoping for something like: listoverloads("foo")
Upvotes: 2
Views: 194