Flowdock
method

find_names_in

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: RI::RiReader
find_names_in(res, klass) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/ri/ri_reader.rb, line 89
    def find_names_in(res, klass)
      classes = klass.classes_and_modules
      for c in classes
        res << c.full_name
        res.concat c.all_method_names
        find_names_in(res, c)
      end
      res
    end
Register or log in to add new notes.