Mega Code Archive

 
Categories / Ruby / Reflection
 

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?"]