= private = protected
find_instance_method_named(name)
Find a named instance method, or return nil
# File lib/rdoc/code_objects.rb, line 444 def find_instance_method_named(name) @method_list.find {|meth| meth.name == name && !meth.singleton} end