I have a method definition like this:
def m1(a:Int, b:String, c:Val) end m = method(:m1) Note that Int, String, Val are default values for a, b, c.
Is it possible to get this information from the method object m?
I have a method definition like this:
def m1(a:Int, b:String, c:Val) end m = method(:m1) Note that Int, String, Val are default values for a, b, c.
Is it possible to get this information from the method object m?