Hi everyone,

I was wondering whether i can check a call belongs to specific method. For 
example:

function Foo(x::Float64,y::Int64) # lets call this f1
#some code
end

function Foo(x::Int64,y::Float64) # lets call this f2
#some code
end

method =@belongs Foo(3.0,2)

I want method to be the function f1?

How can i do this?

Thanks

Reply via email to