If I have a generic method foo, is there a way I can tell if a particular signature has been defined?
Note that I don't want method_exists (which simply determines if something can be dispatched), I want to determine if a particular definition has been made, e.g. if foo(x) = x then I want method_defined(foo,(Int,)) == false method_defined(foo,(Any,)) == true
