Suppose I have a function defined as
function f(x,y)
return x + y
end
Here I have no argument-type declearation. Does this mean julia has to generate as many methods as possible for this function in compiling?
If so, does this mean argument-type declearation will reduce the number of possible methods and thus enhance compile efficiency?