@jason-sage
You can use methodswith to discover methods on a type. I find it doesn't work a 
smoothly as pythons tab completion but I still find it useful.

julia> type Parm
               a::Float64
               b::Int64
       end

julia> function addparm(x::Parm, y::Parm)
               Parm(x.a + y.a, x.b + y.b)
       end
addparm (generic function with 1 method)

julia> methodswith(Parm)
2-element Array{Method,1}:
 addparm(x::Parm,y::Parm) at none:2
 addparm(x::Parm,y::Parm) at none:2



BTW: I'm not sure why the last line returns addparm(x::Parm,y::Parm) twice...??

Reply via email to