julia> methodswith(Foo) On Mon, May 23, 2016 at 2:03 PM, Ford Ox <[email protected]> wrote:
> Is there any function that will print out all methods available for > concrete type? > > type Foo end > method1(f::Foo) = ... > method2(x::Int, f::Foo) = ... > methods(Foo) > > Foo has three methods: >> > method1(...) >> > method2(...) >> > methods(...) >> > > >
