Find all instance methods of Fixnum that take 2 arguments. : find_all « Reflection « Ruby






Find all instance methods of Fixnum that take 2 arguments.


sample = 0
sample.class.find_all { |method_name| sample.method(method_name).arity == 2 }
# => ["instance_variable_set", "between?"]

 

Related examples in the same category