Method: RDocF95::RI::Reader#find_methods

Defined in:
lib/rdoc-f95/ri/reader.rb

#find_methods(name, is_class_method, namespaces) ⇒ Object



34
35
36
37
38
39
40
# File 'lib/rdoc-f95/ri/reader.rb', line 34

def find_methods(name, is_class_method, namespaces)
  result = []
  namespaces.each do |ns|
    result.concat ns.methods_matching(name, is_class_method)
  end
  result
end